home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / emacssrc.zip / EMACSSRC.TAR / emacs-19.17 / lisp / gnus.el < prev    next >
Lisp/Scheme  |  1993-07-23  |  252KB  |  6,946 lines

  1. ;;; GNUS: an NNTP-based News Reader for GNU Emacs
  2. ;; Copyright (C) 1987, 1988, 1989, 1990, 1993 Free Software Foundation, Inc.
  3. ;; $Header: /home/fsf/rms/e19/lisp/RCS/gnus.el,v 1.23 1993/07/17 18:56:09 rms Exp $
  4.  
  5. ;; This file is part of GNU Emacs.
  6.  
  7. ;; GNU Emacs is free software; you can redistribute it and/or modify
  8. ;; it under the terms of the GNU General Public License as published by
  9. ;; the Free Software Foundation; either version 2, or (at your option)
  10. ;; any later version.
  11.  
  12. ;; GNU Emacs is distributed in the hope that it will be useful,
  13. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. ;; GNU General Public License for more details.
  16.  
  17. ;; You should have received a copy of the GNU General Public License
  18. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  19. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  
  21. ;;; Commentary:
  22.  
  23. ;; How to Install GNUS:
  24. ;; (0) First of all, remove GNUS related OLD *.elc files (at least
  25. ;;     nntp.elc).
  26. ;; (1) Unshar gnus.el, gnuspost.el, gnusmail.el, gnusmisc.el, and
  27. ;;     nntp.el.
  28. ;; (2) byte-compile-file nntp.el, gnus.el, gnuspost.el, gnusmail.el,
  29. ;;     and gnusmisc.el.  If you have a local news spool,
  30. ;;     byte-compile-file nnspool.el, too.
  31. ;; (3) Define three environment variables in .login file as follows:
  32. ;;
  33. ;;     setenv    NNTPSERVER    flab
  34. ;;     setenv    DOMAINNAME    "stars.flab.Fujitsu.CO.JP"
  35. ;;     setenv    ORGANIZATION    "Fujitsu Laboratories Ltd., Kawasaki, Japan."
  36. ;;
  37. ;;     Or instead, define lisp variables in your .emacs, site-init.el,
  38. ;;     or default.el as follows:
  39. ;;
  40. ;;     (setq gnus-nntp-server "flab")
  41. ;;     (setq gnus-local-domain "stars.flab.Fujitsu.CO.JP")
  42. ;;     (setq gnus-local-organization "Fujitsu Laboratories Ltd., ...")
  43. ;;
  44. ;;     If the function (system-name) returns the full internet name,
  45. ;;     you don't have to define the domain.
  46. ;;
  47. ;; (4) You may have to define NNTP service name as number 119.
  48. ;;
  49. ;;     (setq gnus-nntp-service 119)
  50. ;;
  51. ;;     Or, if you'd like to use a local news spool directly in stead
  52. ;;     of NNTP, install nnspool.el and set the variable to nil as
  53. ;;     follows:
  54. ;;
  55. ;;     (setq gnus-nntp-service nil)
  56. ;;
  57. ;; (5) If you'd like to use the GENERICFROM feature like the Bnews,
  58. ;;     define the variable as follows:
  59. ;;
  60. ;;     (setq gnus-use-generic-from t)
  61. ;;
  62. ;; (6) Define autoload entries in .emacs file as follows:
  63. ;;
  64. ;;     (autoload 'gnus "gnus" "Read network news." t)
  65. ;;     (autoload 'gnus-post-news "gnuspost" "Post a news." t)
  66. ;;
  67. ;; (7) Read nntp.el if you have problems with NNTP or kanji handling.
  68. ;;
  69. ;; (8) Install mhspool.el, tcp.el, and tcp.c if it is necessary.
  70. ;;
  71. ;;     mhspool.el is a package for reading articles or mail in your
  72. ;;     private directory using GNUS.
  73. ;;
  74. ;;     tcp.el and tcp.c are necessary if and only if your Emacs does
  75. ;;     not have the function `open-network-stream' which is used for
  76. ;;     communicating with NNTP server inside Emacs.
  77. ;;
  78. ;; (9) Install an Info file generated from the texinfo manual gnus.texinfo.
  79. ;;
  80. ;;     If you are not allowed to create the Info file to the standard
  81. ;;     Info-directory, create it in your private directory and set the
  82. ;;     variable gnus-info-directory to that directory.
  83.  
  84. ;; GNUS Mailing List:
  85. ;; There are two mailing lists for GNUS lovers in the world:
  86. ;;
  87. ;;    info-gnus@flab.fujitsu.co.jp, and
  88. ;;    info-gnus-english@tut.cis.ohio-state.edu.
  89. ;;
  90. ;; They are intended to exchange useful information about GNUS, such
  91. ;; as bug fixes, useful hooks, and extensions.  The major difference
  92. ;; between the lists is what the official language is.  Both Japanese
  93. ;; and English are available in info-gnus, while English is only
  94. ;; available in info-gnus-english. There is no need to subscribe to
  95. ;; info-gnus if you cannot read Japanese messages, because most of the
  96. ;; discussion and important announcements will be sent to
  97. ;; info-gnus-english. Moreover, if you can read gnu.emacs.gnus
  98. ;; newsgroup of USENET, you need not, either. info-gnus-english and
  99. ;; gnu.emacs.gnus are linked each other.
  100. ;;
  101. ;; Please send subscription request to:
  102. ;;
  103. ;;     info-gnus-request@flab.fujitsu.co.jp, or
  104. ;;    info-gnus-english-request@cis.ohio-state.edu
  105.  
  106. ;; TO DO:
  107. ;; (1) Incremental update of active info.
  108. ;; (2) GNUS own poster.
  109. ;; (3) Multi-GNUS (Talking to many hosts same time).
  110. ;; (4) Asynchronous transmission of large messages.
  111.  
  112. (provide 'gnus)
  113. (require 'nntp)
  114. (require 'mail-utils)
  115.  
  116. (defvar gnus-nntp-server (or (getenv "NNTPSERVER") gnus-default-nntp-server)
  117.   "*The name of the host running NNTP server.
  118. If it is a string such as `:DIRECTORY', the user's private DIRECTORY
  119. is used as a news spool.
  120. Initialized from the NNTPSERVER environment variable.")
  121.  
  122. (defvar gnus-nntp-service "nntp"
  123.   "*NNTP service name (\"nntp\" or 119).
  124. Go to a local news spool if its value is nil.")
  125.  
  126. (defvar gnus-startup-file "~/.newsrc"
  127.   "*Your .newsrc file. Use `.newsrc-SERVER' instead if exists.")
  128.  
  129. (defvar gnus-signature-file "~/.signature"
  130.   "*Your .signature file. Use `.signature-DISTRIBUTION' instead if exists.")
  131.  
  132. (defvar gnus-use-cross-reference t
  133.   "*Specifies what to do with cross references (Xref: field).
  134. If nil, ignore cross references.  If t, mark articles as read in
  135. subscribed newsgroups.  Otherwise, if not nil nor t, mark articles as
  136. read in all newsgroups.")
  137.  
  138. (defvar gnus-use-followup-to t
  139.   "*Specifies what to do with Followup-To: field.
  140. If nil, ignore followup-to: field.  If t, use its value except for
  141. `poster'.  Otherwise, if not nil nor t, always use its value.")
  142.  
  143. (defvar gnus-large-newsgroup 50
  144.   "*The number of articles which indicates a large newsgroup.
  145. If the number of articles in a newsgroup is greater than the value,
  146. confirmation is required for selecting the newsgroup.")
  147.  
  148. (defvar gnus-author-copy (getenv "AUTHORCOPY")
  149.   "*File name saving a copy of an article posted using FCC: field.
  150. Initialized from the AUTHORCOPY environment variable.
  151.  
  152. Articles are saved using a function specified by the the variable
  153. gnus-author-copy-saver (rmail-output is default) if a file name is
  154. given.  Instead, if the first character of the name is `|', the
  155. contents of the article is piped out to the named program. It is
  156. possible to save an article in an MH folder as follows:
  157.  
  158. (setq gnus-author-copy \"|/usr/local/lib/mh/rcvstore +Article\")")
  159.  
  160. (defvar gnus-author-copy-saver (function rmail-output)
  161.   "*A function called with a file name to save an author copy to.
  162. The default function is `rmail-output' which saves in Unix mailbox format.")
  163.  
  164. (defvar gnus-use-long-file-name
  165.   (not (memq system-type '(usg-unix-v xenix)))
  166.   "*Non-nil means that a newsgroup name is used as a default file name
  167. to save articles to. If it's nil, the directory form of a newsgroup is
  168. used instead.")
  169.  
  170. (defvar gnus-article-save-directory (getenv "SAVEDIR")
  171.   "*A directory name to save articles to (default to ~/News).
  172. Initialized from the SAVEDIR environment variable.")
  173.  
  174. (defvar gnus-default-article-saver (function gnus-summary-save-in-rmail)
  175.   "*A function to save articles in your favorite format.
  176. The function must be interactively callable (in other words, it must
  177. be an Emacs command).
  178.  
  179. GNUS provides the following functions:
  180.     gnus-summary-save-in-rmail (in Rmail format)
  181.     gnus-summary-save-in-mail (in Unix mail format)
  182.     gnus-summary-save-in-folder (in an MH folder)
  183.     gnus-summary-save-in-file (in article format).")
  184.  
  185. (defvar gnus-rmail-save-name (function gnus-plain-save-name)
  186.   "*A function generating a file name to save articles in Rmail format.
  187. The function is called with NEWSGROUP, HEADERS, and optional LAST-FILE.")
  188.  
  189. (defvar gnus-mail-save-name (function gnus-plain-save-name)
  190.   "*A function generating a file name to save articles in Unix mail format.
  191. The function is called with NEWSGROUP, HEADERS, and optional LAST-FILE.")
  192.  
  193. (defvar gnus-folder-save-name (function gnus-folder-save-name)
  194.   "*A function generating a file name to save articles in MH folder.
  195. The function is called with NEWSGROUP, HEADERS, and optional LAST-FOLDER.")
  196.  
  197. (defvar gnus-file-save-name (function gnus-numeric-save-name)
  198.   "*A function generating a file name to save articles in article format.
  199. The function is called with NEWSGROUP, HEADERS, and optional LAST-FILE.")
  200.  
  201. (defvar gnus-kill-file-name "KILL"
  202.   "*File name of a KILL file.")
  203.  
  204. (defvar gnus-novice-user t
  205.   "*Non-nil means that you are a novice to USENET.  If non-nil,
  206. verbose messages may be displayed or your confirmations may be required.")
  207.  
  208. (defvar gnus-interactive-catchup t
  209.   "*Require your confirmation when catching up a newsgroup if non-nil.")
  210.  
  211. (defvar gnus-interactive-post t
  212.   "*Newsgroup, subject, and distribution will be asked for if non-nil.")
  213.  
  214. (defvar gnus-interactive-exit t
  215.   "*Require your confirmation when exiting gnus if non-nil.")
  216.  
  217. (defvar gnus-user-login-name nil
  218.   "*The login name of the user.
  219. Got from the USER and LOGNAME environment variable if undefined.")
  220.  
  221. (defvar gnus-user-full-name nil
  222.   "*The full name of the user.
  223. Got from the NAME environment variable if undefined.")
  224.  
  225. (defvar gnus-show-mime nil
  226.   "*Show MIME message if non-nil.")
  227.  
  228. (defvar gnus-show-threads t
  229.   "*Show conversation threads in Summary Mode if non-nil.")
  230.  
  231. (defvar gnus-thread-hide-subject t
  232.   "*Non-nil means hide subjects for thread subtrees.")
  233.  
  234. (defvar gnus-thread-hide-subtree nil
  235.   "*Non-nil means hide thread subtrees initially.
  236. If non-nil, you have to run the command gnus-summary-show-thread by
  237. hand or by using gnus-select-article-hook to show hidden threads.")
  238.  
  239. (defvar gnus-thread-hide-killed t
  240.   "*Non-nil means hide killed thread subtrees automatically.")
  241.  
  242. (defvar gnus-thread-ignore-subject nil
  243.   "*Don't take care of subject differences, but only references if non-nil.
  244. If it is non-nil, some commands work with subjects do not work properly.")
  245.  
  246. (defvar gnus-thread-indent-level 4
  247.   "*Indentation of thread subtrees.")
  248.  
  249. (defvar gnus-ignored-newsgroups "^to\\..*$"
  250.   "*A regular expression used to ignore uninterested newsgroups in the active file.
  251. Any lines in the active file matching this regular expression are
  252. removed from the newsgroup list before anything else is done to it,
  253. thus making them effectively invisible.")
  254.  
  255. (defvar gnus-ignored-headers
  256.   "^Path:\\|^Posting-Version:\\|^Article-I.D.:\\|^Expires:\\|^Date-Received:\\|^References:\\|^Control:\\|^Xref:\\|^Lines:\\|^Posted:\\|^Relay-Version:\\|^Message-ID:\\|^Nf-ID:\\|^Nf-From:\\|^Approved:\\|^Sender:"
  257.   "*All random fields within the header of a message.")
  258.  
  259. (defvar gnus-required-headers
  260.   '(From Date Newsgroups Subject Message-ID Path Organization Distribution)
  261.   "*All required fields for articles you post.
  262. RFC977 and RFC1036 require From, Date, Newsgroups, Subject, Message-ID
  263. and Path fields.  Organization, Distribution and Lines are optional.
  264. If you want GNUS not to insert some field, remove it from the
  265. variable.")
  266.  
  267. (defvar gnus-show-all-headers nil
  268.   "*Show all headers of an article if non-nil.")
  269.  
  270. (defvar gnus-save-all-headers t
  271.   "*Save all headers of an article if non-nil.")
  272.  
  273. (defvar gnus-optional-headers (function gnus-optional-lines-and-from)
  274.   "*A function generating a optional string displayed in GNUS Summary
  275. mode buffer.  The function is called with an article HEADER. The
  276. result must be a string excluding `[' and `]'.")
  277.  
  278. (defvar gnus-auto-extend-newsgroup t
  279.   "*Extend visible articles to forward and backward if non-nil.")
  280.  
  281. (defvar gnus-auto-select-first t
  282.   "*Select the first unread article automagically if non-nil.
  283. If you want to prevent automatic selection of the first unread article
  284. in some newsgroups, set the variable to nil in gnus-select-group-hook
  285. or gnus-apply-kill-hook.")
  286.  
  287. (defvar gnus-auto-select-next t
  288.   "*Select the next newsgroup automagically if non-nil.
  289. If the value is t and the next newsgroup is empty, GNUS will exit
  290. Summary mode and go back to Group mode.  If the value is neither nil
  291. nor t, GNUS will select the following unread newsgroup. Especially, if
  292. the value is the symbol `quietly', the next unread newsgroup will be
  293. selected without any confirmations.")
  294.  
  295. (defvar gnus-auto-select-same nil
  296.   "*Select the next article with the same subject automagically if non-nil.")
  297.  
  298. (defvar gnus-auto-center-summary t
  299.   "*Always center the current summary in GNUS Summary window if non-nil.")
  300.  
  301. (defvar gnus-auto-mail-to-author nil
  302.   "*Insert `To: author' of the article when following up if non-nil.
  303. Mail is sent using the function specified by the variable
  304. gnus-mail-send-method.")
  305.  
  306. (defvar gnus-break-pages t
  307.   "*Break an article into pages if non-nil.
  308. Page delimiter is specified by the variable `gnus-page-delimiter'.")
  309.  
  310. (defvar gnus-page-delimiter "^\^L"
  311.   "*Regexp describing line-beginnings that separate pages of news article.")
  312.  
  313. (defvar gnus-digest-show-summary t
  314.   "*Show a summary of undigestified messages if non-nil.")
  315.  
  316. (defvar gnus-digest-separator "^Subject:[ \t]"
  317.   "*Regexp that separates messages in a digest article.")
  318.  
  319. (defvar gnus-use-full-window t
  320.   "*Non-nil means to take up the entire screen of Emacs.")
  321.  
  322. (defvar gnus-window-configuration
  323.   '((summary (0 1 0))
  324.     (newsgroups   (1 0 0))
  325.     (article   (0 3 10)))
  326.   "*Specify window configurations for each action.
  327. The format of the variable is a list of (ACTION (G S A)), where G, S,
  328. and A are the relative height of Group, Summary, and Article windows,
  329. respectively.  ACTION is `summary', `newsgroups', or `article'.")
  330.  
  331. (defvar gnus-show-mime-method (function metamail-buffer)
  332.   "*Function to process a MIME message.
  333. The function is expected to process current buffer as a MIME message.")
  334.  
  335. (defvar gnus-mail-reply-method
  336.   (function gnus-mail-reply-using-mail)
  337.   "*Function to compose reply mail.
  338. The function gnus-mail-reply-using-mail uses usual sendmail mail
  339. program.  The function gnus-mail-reply-using-mhe uses mh-e mail
  340. program.  You can use yet another program by customizing this variable.")
  341.  
  342. (defvar gnus-mail-forward-method
  343.   (function gnus-mail-forward-using-mail)
  344.   "*Function to forward current message to another user.
  345. The function gnus-mail-reply-using-mail uses usual sendmail mail
  346. program. You can use yet another program by customizing this variable.")
  347.  
  348. (defvar gnus-mail-other-window-method
  349.   (function gnus-mail-other-window-using-mail)
  350.   "*Function to compose mail in other window.
  351. The function gnus-mail-other-window-using-mail uses usual sendmail
  352. mail program.  The function gnus-mail-other-window-using-mhe uses mh-e
  353. mail program.  You can use yet another program by customizing this variable.")
  354.  
  355. (defvar gnus-mail-send-method send-mail-function
  356.   "*Function to mail a message too which is being posted as an article.
  357. The message must have To: or Cc: field.  The value of the variable
  358. send-mail-function is the default function which uses sendmail mail
  359. program.")
  360.  
  361. (defvar gnus-subscribe-newsgroup-method
  362.   (function gnus-subscribe-alphabetically)
  363.   "*Function called with a newsgroup name when new newsgroup is found.
  364. The function gnus-subscribe-randomly inserts a new newsgroup a the
  365. beginning of newsgroups.  The function gnus-subscribe-alphabetically
  366. inserts it in strict alphabetic order.  The function
  367. gnus-subscribe-hierarchically inserts it in hierarchical newsgroup
  368. order.  The function gnus-subscribe-interactively asks for your decision.")
  369.  
  370. (defvar gnus-group-mode-hook nil
  371.   "*A hook for GNUS Group Mode.")
  372.  
  373. (defvar gnus-summary-mode-hook nil
  374.   "*A hook for GNUS Summary Mode.")
  375.  
  376. (defvar gnus-article-mode-hook nil
  377.   "*A hook for GNUS Article Mode.")
  378.  
  379. (defvar gnus-kill-file-mode-hook nil
  380.   "*A hook for GNUS KILL File Mode.")
  381.  
  382. (defvar gnus-open-server-hook nil
  383.   "*A hook called just before opening connection to news server.")
  384.  
  385. (defvar gnus-startup-hook nil
  386.   "*A hook called at start up time.
  387. This hook is called after GNUS is connected to the NNTP server. So, it
  388. is possible to change the behavior of GNUS according to the selected
  389. NNTP server.")
  390.  
  391. (defvar gnus-group-prepare-hook nil
  392.   "*A hook called after newsgroup list is created in the Newsgroup buffer.
  393. If you want to modify the Newsgroup buffer, you can use this hook.")
  394.  
  395. (defvar gnus-summary-prepare-hook nil
  396.   "*A hook called after summary list is created in the Summary buffer.
  397. If you want to modify the Summary buffer, you can use this hook.")
  398.  
  399. (defvar gnus-article-prepare-hook nil
  400.   "*A hook called after an article is prepared in the Article buffer.
  401. If you want to run a special decoding program like nkf, use this hook.")
  402.  
  403. (defvar gnus-select-group-hook nil
  404.   "*A hook called when a newsgroup is selected.
  405. If you want to sort Summary buffer by date and then by subject, you
  406. can use the following hook:
  407.  
  408. (setq gnus-select-group-hook
  409.       (function
  410.        (lambda ()
  411.      ;; First of all, sort by date.
  412.      (gnus-keysort-headers
  413.       (function string-lessp)
  414.       (function
  415.        (lambda (a)
  416.          (gnus-sortable-date (gnus-header-date a)))))
  417.      ;; Then sort by subject string ignoring `Re:'.
  418.      ;; If case-fold-search is non-nil, case of letters is ignored.
  419.      (gnus-keysort-headers
  420.       (function string-lessp)
  421.       (function
  422.        (lambda (a)
  423.          (if case-fold-search
  424.          (downcase (gnus-simplify-subject (gnus-header-subject a) t))
  425.            (gnus-simplify-subject (gnus-header-subject a) t)))))
  426.      )))
  427.  
  428. If you'd like to simplify subjects like the
  429. `gnus-summary-next-same-subject' command does, you can use the
  430. following hook:
  431.  
  432. (setq gnus-select-group-hook
  433.       (function
  434.        (lambda ()
  435.      (mapcar (function
  436.           (lambda (header)
  437.             (nntp-set-header-subject
  438.              header
  439.              (gnus-simplify-subject
  440.               (gnus-header-subject header) 're-only))))
  441.          gnus-newsgroup-headers))))
  442.  
  443. In some newsgroups author name is meaningless. It is possible to
  444. prevent listing author names in GNUS Summary buffer as follows:
  445.  
  446. (setq gnus-select-group-hook
  447.       (function
  448.        (lambda ()
  449.      (cond ((string-equal \"comp.sources.unix\" gnus-newsgroup-name)
  450.         (setq gnus-optional-headers
  451.               (function gnus-optional-lines)))
  452.            (t
  453.         (setq gnus-optional-headers
  454.               (function gnus-optional-lines-and-from)))))))")
  455.  
  456. (defvar gnus-select-article-hook
  457.   (function (lambda () (gnus-summary-show-thread)))
  458.   "*A hook called when an article is selected.
  459. The default hook shows conversation thread subtrees of the selected
  460. article automatically as follows:
  461.  
  462. (setq gnus-select-article-hook
  463.       (function 
  464.        (lambda ()
  465.      (gnus-summary-show-thread))))
  466.  
  467. If you'd like to run RMAIL on a digest article automagically, you can
  468. use the following hook:
  469.  
  470. (setq gnus-select-article-hook
  471.       (function
  472.        (lambda ()
  473.      (gnus-summary-show-thread)
  474.      (cond ((string-equal \"comp.sys.sun\" gnus-newsgroup-name)
  475.         (gnus-summary-rmail-digest))
  476.            ((and (string-equal \"comp.text\" gnus-newsgroup-name)
  477.              (string-match \"^TeXhax Digest\"
  478.                    (gnus-header-subject gnus-current-headers)))
  479.         (gnus-summary-rmail-digest)
  480.         )))))")
  481.  
  482. (defvar gnus-select-digest-hook
  483.   (function
  484.    (lambda ()
  485.      ;; Reply-To: is required by `undigestify-rmail-message'.
  486.      (or (mail-position-on-field "Reply-to" t)
  487.      (progn
  488.        (mail-position-on-field "Reply-to")
  489.        (insert (gnus-fetch-field "From"))))))
  490.   "*A hook called when reading digest messages using Rmail.
  491. This hook can be used to modify incomplete digest articles as follows
  492. (this is the default):
  493.  
  494. (setq gnus-select-digest-hook
  495.       (function
  496.        (lambda ()
  497.      ;; Reply-To: is required by `undigestify-rmail-message'.
  498.      (or (mail-position-on-field \"Reply-to\" t)
  499.          (progn
  500.            (mail-position-on-field \"Reply-to\")
  501.            (insert (gnus-fetch-field \"From\")))))))")
  502.  
  503. (defvar gnus-rmail-digest-hook nil
  504.   "*A hook called when reading digest messages using Rmail.
  505. This hook is intended to customize Rmail mode for reading digest articles.")
  506.  
  507. (defvar gnus-apply-kill-hook (function gnus-apply-kill-file)
  508.   "*A hook called when a newsgroup is selected and summary list is prepared.
  509. This hook is intended to apply a KILL file to the selected newsgroup.
  510. The function `gnus-apply-kill-file' is called defaultly.
  511.  
  512. Since a general KILL file is too heavy to use only for a few
  513. newsgroups, I recommend you to use a lighter hook function. For
  514. example, if you'd like to apply a KILL file to articles which contains
  515. a string `rmgroup' in subject in newsgroup `control', you can use the
  516. following hook:
  517.  
  518. (setq gnus-apply-kill-hook
  519.       (function
  520.        (lambda ()
  521.      (cond ((string-match \"control\" gnus-newsgroup-name)
  522.         (gnus-kill \"Subject\" \"rmgroup\")
  523.         (gnus-expunge \"X\"))))))")
  524.  
  525. (defvar gnus-mark-article-hook
  526.   (function
  527.    (lambda ()
  528.      (or (memq gnus-current-article gnus-newsgroup-marked)
  529.      (gnus-summary-mark-as-read gnus-current-article))
  530.      (gnus-summary-set-current-mark "+")))
  531.   "*A hook called when an article is selected at the first time.
  532. The hook is intended to mark an article as read (or unread)
  533. automatically when it is selected.
  534.  
  535. If you'd like to mark as unread (-) instead, use the following hook:
  536.  
  537. (setq gnus-mark-article-hook
  538.       (function
  539.        (lambda ()
  540.      (gnus-summary-mark-as-unread gnus-current-article)
  541.      (gnus-summary-set-current-mark \"+\"))))")
  542.  
  543. (defvar gnus-prepare-article-hook (list (function gnus-inews-insert-signature))
  544.   "*A hook called after preparing body, but before preparing header fields.
  545. The default hook (`gnus-inews-insert-signature') inserts a signature
  546. file specified by the variable `gnus-signature-file'.")
  547.  
  548. (defvar gnus-inews-article-hook (list (function gnus-inews-do-fcc))
  549.   "*A hook called before finally posting an article.
  550. The default hook (`gnus-inews-do-fcc') does FCC processing (save article
  551. to a file).")
  552.  
  553. (defvar gnus-exit-group-hook nil
  554.   "*A hook called when exiting (not quitting) Summary mode.
  555. If your machine is so slow that exiting from Summary mode takes very
  556. long time, set the variable `gnus-use-cross-reference' to nil. This
  557. inhibits marking articles as read using cross-reference information.")
  558.  
  559. (defvar gnus-suspend-gnus-hook nil
  560.   "*A hook called when suspending (not exiting) GNUS.")
  561.  
  562. (defvar gnus-exit-gnus-hook nil
  563.   "*A hook called when exiting (not suspending) GNUS.")
  564.  
  565. (defvar gnus-save-newsrc-hook nil
  566.   "*A hook called when saving the newsrc file.
  567. This hook is called before saving the `.newsrc' file.")
  568.  
  569.  
  570. ;; Site dependent variables. You have to define these variables in
  571. ;;  site-init.el, default.el or your .emacs.
  572.  
  573. (defvar gnus-local-timezone nil
  574.   "*Local time zone.
  575. This value is used only if `current-time-zone' does not work in your Emacs.
  576. It specifies the GMT offset, i.e. a decimal integer
  577. of the form +-HHMM giving the hours and minutes ahead of (i.e. east of) GMT.
  578. For example, +0900 should be used in Japan, since it is 9 hours ahead of GMT.
  579.  
  580. For backwards compatibility, it may also be a string like \"JST\",
  581. but strings are obsolescent: you should use numeric offsets instead.")
  582.  
  583. (defvar gnus-local-domain nil
  584.   "*Local domain name without a host name like: \"stars.flab.Fujitsu.CO.JP\"
  585. The `DOMAINNAME' environment variable is used instead if defined.  If
  586. the function (system-name) returns the full internet name, there is no
  587. need to define the name.")
  588.  
  589. (defvar gnus-local-organization nil
  590.   "*Local organization like: \"Fujitsu Laboratories Ltd., Kawasaki, Japan.\"
  591. The `ORGANIZATION' environment variable is used instead if defined.")
  592.  
  593. (defvar gnus-local-distributions '("local" "world")
  594.   "*List of distributions.
  595. The first element in the list is used as default.  If distributions
  596. file is available, its content is also used.")
  597.  
  598. (defvar gnus-use-generic-from nil
  599.   "*If nil, prepend local host name to the defined domain in the From:
  600. field; if stringp, use this; if non-nil, strip of the local host name.")
  601.  
  602. (defvar gnus-use-generic-path nil
  603.   "*If nil, use the NNTP server name in the Path: field; if stringp,
  604. use this; if non-nil, use no host name (user name only)")
  605.  
  606. ;; Internal variables.
  607.  
  608. (defconst gnus-version "GNUS 3.15"
  609.   "Version numbers of this version of GNUS.")
  610.  
  611. (defvar gnus-info-nodes
  612.   '((gnus-group-mode        "(gnus)Newsgroup Commands")
  613.     (gnus-summary-mode        "(gnus)Summary Commands")
  614.     (gnus-article-mode        "(gnus)Article Commands")
  615.     (gnus-kill-file-mode    "(gnus)Kill File")
  616.     (gnus-browse-killed-mode    "(gnus)Maintaining Subscriptions"))
  617.   "Assoc list of major modes and related Info nodes.")
  618.  
  619. ;; Alist syntax is different from that of 3.14.3.
  620. (defvar gnus-access-methods
  621.   '((nntp
  622.      (gnus-retrieve-headers        nntp-retrieve-headers)
  623.      (gnus-open-server            nntp-open-server)
  624.      (gnus-close-server            nntp-close-server)
  625.      (gnus-server-opened        nntp-server-opened)
  626.      (gnus-status-message        nntp-status-message)
  627.      (gnus-request-article        nntp-request-article)
  628.      (gnus-request-group        nntp-request-group)
  629.      (gnus-request-list            nntp-request-list)
  630.      (gnus-request-list-newsgroups    nntp-request-list-newsgroups)
  631.      (gnus-request-list-distributions    nntp-request-list-distributions)
  632.      (gnus-request-post            nntp-request-post))
  633.     (nnspool
  634.      (gnus-retrieve-headers        nnspool-retrieve-headers)
  635.      (gnus-open-server            nnspool-open-server)
  636.      (gnus-close-server            nnspool-close-server)
  637.      (gnus-server-opened        nnspool-server-opened)
  638.      (gnus-status-message        nnspool-status-message)
  639.      (gnus-request-article        nnspool-request-article)
  640.      (gnus-request-group        nnspool-request-group)
  641.      (gnus-request-list            nnspool-request-list)
  642.      (gnus-request-list-newsgroups    nnspool-request-list-newsgroups)
  643.      (gnus-request-list-distributions    nnspool-request-list-distributions)
  644.      (gnus-request-post            nnspool-request-post))
  645.     (mhspool
  646.      (gnus-retrieve-headers        mhspool-retrieve-headers)
  647.      (gnus-open-server            mhspool-open-server)
  648.      (gnus-close-server            mhspool-close-server)
  649.      (gnus-server-opened        mhspool-server-opened)
  650.      (gnus-status-message        mhspool-status-message)
  651.      (gnus-request-article        mhspool-request-article)
  652.      (gnus-request-group        mhspool-request-group)
  653.      (gnus-request-list            mhspool-request-list)
  654.      (gnus-request-list-newsgroups    mhspool-request-list-newsgroups)
  655.      (gnus-request-list-distributions    mhspool-request-list-distributions)
  656.      (gnus-request-post            mhspool-request-post)))
  657.   "Access method for NNTP, nnspool, and mhspool.")
  658.  
  659. (defvar gnus-group-buffer "*Newsgroup*")
  660. (defvar gnus-summary-buffer "*Summary*")
  661. (defvar gnus-article-buffer "*Article*")
  662. (defvar gnus-digest-buffer "GNUS Digest")
  663. (defvar gnus-digest-summary-buffer "GNUS Digest-summary")
  664.  
  665. (defvar gnus-buffer-list
  666.   (list gnus-group-buffer gnus-summary-buffer gnus-article-buffer
  667.     gnus-digest-buffer gnus-digest-summary-buffer)
  668.   "GNUS buffer names which should be killed when exiting.")
  669.  
  670. (defvar gnus-variable-list
  671.   '(gnus-newsrc-options
  672.     gnus-newsrc-options-n-yes gnus-newsrc-options-n-no
  673.     gnus-newsrc-assoc gnus-killed-assoc gnus-marked-assoc)
  674.   "GNUS variables saved in the quick startup file.")
  675.  
  676. (defvar gnus-overload-functions
  677.   '((news-inews gnus-inews-news "rnewspost")
  678.     (caesar-region gnus-caesar-region "rnews"))
  679.   "Functions overloaded by gnus.
  680. It is a list of `(original overload &optional file)'.")
  681.  
  682. (defvar gnus-distribution-list nil)
  683.  
  684. (defvar gnus-newsrc-options nil
  685.   "Options line in the .newsrc file.")
  686.  
  687. (defvar gnus-newsrc-options-n-yes nil
  688.   "Regexp representing subscribed newsgroups.")
  689.  
  690. (defvar gnus-newsrc-options-n-no nil
  691.   "Regexp representing unsubscribed newsgroups.")
  692.  
  693. (defvar gnus-newsrc-assoc nil
  694.   "Assoc list of read articles.
  695. gnus-newsrc-hashtb should be kept so that both hold the same information.")
  696.  
  697. (defvar gnus-newsrc-hashtb nil
  698.   "Hashtable of gnus-newsrc-assoc.")
  699.  
  700. (defvar gnus-killed-assoc nil
  701.   "Assoc list of newsgroups removed from gnus-newsrc-assoc.
  702. gnus-killed-hashtb should be kept so that both hold the same information.")
  703.  
  704. (defvar gnus-killed-hashtb nil
  705.   "Hashtable of gnus-killed-assoc.")
  706.  
  707. (defvar gnus-marked-assoc nil
  708.   "Assoc list of articles marked as unread.
  709. gnus-marked-hashtb should be kept so that both hold the same information.")
  710.  
  711. (defvar gnus-marked-hashtb nil
  712.   "Hashtable of gnus-marked-assoc.")
  713.  
  714. (defvar gnus-unread-hashtb nil
  715.   "Hashtable of unread articles.")
  716.  
  717. (defvar gnus-active-hashtb nil
  718.   "Hashtable of active articles.")
  719.  
  720. (defvar gnus-octive-hashtb nil
  721.   "Hashtable of OLD active articles.")
  722.  
  723. (defvar gnus-current-startup-file nil
  724.   "Startup file for the current host.")
  725.  
  726. (defvar gnus-last-search-regexp nil
  727.   "Default regexp for article search command.")
  728.  
  729. (defvar gnus-last-shell-command nil
  730.   "Default shell command on article.")
  731.  
  732. (defvar gnus-have-all-newsgroups nil)
  733.  
  734. (defvar gnus-newsgroup-name nil)
  735. (defvar gnus-newsgroup-begin nil)
  736. (defvar gnus-newsgroup-end nil)
  737. (defvar gnus-newsgroup-last-rmail nil)
  738. (defvar gnus-newsgroup-last-mail nil)
  739. (defvar gnus-newsgroup-last-folder nil)
  740. (defvar gnus-newsgroup-last-file nil)
  741.  
  742. (defvar gnus-newsgroup-unreads nil
  743.   "List of unread articles in the current newsgroup.")
  744.  
  745. (defvar gnus-newsgroup-unselected nil
  746.   "List of unselected unread articles in the current newsgroup.")
  747.  
  748. (defvar gnus-newsgroup-marked nil
  749.   "List of marked articles in the current newsgroup (a subset of unread art).")
  750.  
  751. (defvar gnus-newsgroup-headers nil
  752.   "List of article headers in the current newsgroup.
  753. If the variable is modified (added or deleted), the function
  754. gnus-clear-hashtables-for-newsgroup-headers must be called to clear
  755. the hash tables.")
  756. (defvar gnus-newsgroup-headers-hashtb-by-id nil)
  757. (defvar gnus-newsgroup-headers-hashtb-by-number nil)
  758.  
  759. (defvar gnus-current-article nil)
  760. (defvar gnus-current-headers nil)
  761. (defvar gnus-current-history nil)
  762. (defvar gnus-have-all-headers nil "Must be either T or NIL.")
  763. (defvar gnus-last-article nil)
  764. (defvar gnus-current-kill-article nil)
  765.  
  766. ;; Save window configuration.
  767. (defvar gnus-winconf-kill-file nil)
  768.  
  769. (defvar gnus-group-mode-map nil)
  770. (defvar gnus-summary-mode-map nil)
  771. (defvar gnus-article-mode-map nil)
  772. (defvar gnus-kill-file-mode-map nil)
  773.  
  774. (defvar rmail-last-file (expand-file-name "~/XMBOX"))
  775. (defvar rmail-last-rmail-file (expand-file-name "~/XNEWS"))
  776.  
  777. ;; Define GNUS Subsystems.
  778. (autoload 'gnus-group-post-news "gnuspost"
  779.       "Post an article." t)
  780. (autoload 'gnus-summary-post-news "gnuspost"
  781.       "Post an article." t)
  782. (autoload 'gnus-summary-followup "gnuspost"
  783.       "Post a reply article." t)
  784. (autoload 'gnus-summary-followup-with-original "gnuspost"
  785.       "Post a reply article with original article." t)
  786. (autoload 'gnus-summary-cancel-article "gnuspost"
  787.       "Cancel an article you posted." t)
  788.  
  789. (autoload 'gnus-summary-reply "gnusmail"
  790.       "Reply mail to news author." t)
  791. (autoload 'gnus-summary-reply-with-original "gnusmail"
  792.       "Reply mail to news author with original article." t)
  793. (autoload 'gnus-summary-mail-forward "gnusmail"
  794.       "Forward the current message to another user." t)
  795. (autoload 'gnus-summary-mail-other-window "gnusmail"
  796.       "Compose mail in other window." t)
  797.  
  798. (autoload 'gnus-group-kill-group "gnusmisc"
  799.       "Kill newsgroup on current line." t)
  800. (autoload 'gnus-group-yank-group "gnusmisc"
  801.       "Yank the last killed newsgroup on current line." t)
  802. (autoload 'gnus-group-kill-region "gnusmisc"
  803.       "Kill newsgroups in current region." t)
  804. (autoload 'gnus-group-transpose-groups "gnusmisc"
  805.       "Exchange current newsgroup and previous newsgroup." t)
  806. (autoload 'gnus-list-killed-groups "gnusmisc"
  807.       "List the killed newsgroups." t)
  808. (autoload 'gnus-gmt-to-local "gnusmisc"
  809.       "Rewrite Date field in GMT to local in current buffer.")
  810.  
  811. (autoload 'metamail-buffer "metamail"
  812.       "Process current buffer through 'metamail'." t)
  813.  
  814. (autoload 'timezone-make-sortable-date "timezone")
  815. (autoload 'timezone-parse-date "timezone")
  816.  
  817. (autoload 'rmail-output "rmailout"
  818.       "Append this message to Unix mail file named FILE-NAME." t)
  819. (autoload 'mail-position-on-field "sendmail")
  820. (autoload 'mh-find-path "mh-e")
  821. (autoload 'mh-prompt-for-folder "mh-e")
  822.  
  823. (put 'gnus-group-mode 'mode-class 'special)
  824. (put 'gnus-summary-mode 'mode-class 'special)
  825. (put 'gnus-article-mode 'mode-class 'special)
  826.  
  827.  
  828. ;;(put 'gnus-eval-in-buffer-window 'lisp-indent-hook 1)
  829.  
  830. (defmacro gnus-eval-in-buffer-window (buffer &rest forms)
  831.   "Pop to BUFFER, evaluate FORMS, and then returns to original window."
  832.   (` (let ((GNUSStartBufferWindow (selected-window)))
  833.        (unwind-protect
  834.        (progn
  835.          (pop-to-buffer (, buffer))
  836.          (,@ forms))
  837.      (select-window GNUSStartBufferWindow)))))
  838.  
  839. (defmacro gnus-make-hashtable (&optional hashsize)
  840.   "Make a hash table (default and minimum size is 200).
  841. Optional argument HASHSIZE specifies the table size."
  842.   (` (make-vector (, (if hashsize (` (max (, hashsize) 200)) 200)) 0)))
  843.  
  844. (defmacro gnus-gethash (string hashtable)
  845.   "Get hash value of STRING in HASHTABLE."
  846.   ;;(` (symbol-value (abbrev-symbol (, string) (, hashtable))))
  847.   ;;(` (abbrev-expansion (, string) (, hashtable)))
  848.   (` (symbol-value (intern-soft (, string) (, hashtable)))))
  849.  
  850. (defmacro gnus-sethash (string value hashtable)
  851.   "Set hash value. Arguments are STRING, VALUE, and HASHTABLE."
  852.   ;; We cannot use define-abbrev since it only accepts string as value.
  853.   (` (set (intern (, string) (, hashtable)) (, value))))
  854.  
  855. ;; Note: Macros defined here are also defined in nntp.el. I don't like
  856. ;; to put them here, but many users got troubled with the old
  857. ;; definitions in nntp.elc. These codes are NNTP 3.10 version.
  858.  
  859. (defmacro nntp-header-number (header)
  860.   "Return article number in HEADER."
  861.   (` (aref (, header) 0)))
  862.  
  863. (defmacro nntp-set-header-number (header number)
  864.   "Set article number of HEADER to NUMBER."
  865.   (` (aset (, header) 0 (, number))))
  866.  
  867. (defmacro nntp-header-subject (header)
  868.   "Return subject string in HEADER."
  869.   (` (aref (, header) 1)))
  870.  
  871. (defmacro nntp-set-header-subject (header subject)
  872.   "Set article subject of HEADER to SUBJECT."
  873.   (` (aset (, header) 1 (, subject))))
  874.  
  875. (defmacro nntp-header-from (header)
  876.   "Return author string in HEADER."
  877.   (` (aref (, header) 2)))
  878.  
  879. (defmacro nntp-set-header-from (header from)
  880.   "Set article author of HEADER to FROM."
  881.   (` (aset (, header) 2 (, from))))
  882.  
  883. (defmacro nntp-header-xref (header)
  884.   "Return xref string in HEADER."
  885.   (` (aref (, header) 3)))
  886.  
  887. (defmacro nntp-set-header-xref (header xref)
  888.   "Set article xref of HEADER to xref."
  889.   (` (aset (, header) 3 (, xref))))
  890.  
  891. (defmacro nntp-header-lines (header)
  892.   "Return lines in HEADER."
  893.   (` (aref (, header) 4)))
  894.  
  895. (defmacro nntp-set-header-lines (header lines)
  896.   "Set article lines of HEADER to LINES."
  897.   (` (aset (, header) 4 (, lines))))
  898.  
  899. (defmacro nntp-header-date (header)
  900.   "Return date in HEADER."
  901.   (` (aref (, header) 5)))
  902.  
  903. (defmacro nntp-set-header-date (header date)
  904.   "Set article date of HEADER to DATE."
  905.   (` (aset (, header) 5 (, date))))
  906.  
  907. (defmacro nntp-header-id (header)
  908.   "Return Id in HEADER."
  909.   (` (aref (, header) 6)))
  910.  
  911. (defmacro nntp-set-header-id (header id)
  912.   "Set article Id of HEADER to ID."
  913.   (` (aset (, header) 6 (, id))))
  914.  
  915. (defmacro nntp-header-references (header)
  916.   "Return references in HEADER."
  917.   (` (aref (, header) 7)))
  918.  
  919. (defmacro nntp-set-header-references (header ref)
  920.   "Set article references of HEADER to REF."
  921.   (` (aset (, header) 7 (, ref))))
  922.  
  923.  
  924. ;;;
  925. ;;; GNUS Group Mode
  926. ;;;
  927.  
  928. (if gnus-group-mode-map
  929.     nil
  930.   (setq gnus-group-mode-map (make-keymap))
  931.   (suppress-keymap gnus-group-mode-map)
  932.   (define-key gnus-group-mode-map " " 'gnus-group-read-group)
  933.   (define-key gnus-group-mode-map "=" 'gnus-group-select-group)
  934.   (define-key gnus-group-mode-map "j" 'gnus-group-jump-to-group)
  935.   (define-key gnus-group-mode-map "n" 'gnus-group-next-unread-group)
  936.   (define-key gnus-group-mode-map "p" 'gnus-group-prev-unread-group)
  937.   (define-key gnus-group-mode-map "\177" 'gnus-group-prev-unread-group)
  938.   (define-key gnus-group-mode-map "N" 'gnus-group-next-group)
  939.   (define-key gnus-group-mode-map "P" 'gnus-group-prev-group)
  940.   (define-key gnus-group-mode-map "\C-n" 'gnus-group-next-group)
  941.   (define-key gnus-group-mode-map "\C-p" 'gnus-group-prev-group)
  942.   (define-key gnus-group-mode-map "\r" 'next-line)
  943.   ;;(define-key gnus-group-mode-map "/" 'isearch-forward)
  944.   (define-key gnus-group-mode-map "<" 'beginning-of-buffer)
  945.   (define-key gnus-group-mode-map ">" 'end-of-buffer)
  946.   (define-key gnus-group-mode-map "u" 'gnus-group-unsubscribe-current-group)
  947.   (define-key gnus-group-mode-map "U" 'gnus-group-unsubscribe-group)
  948.   (define-key gnus-group-mode-map "c" 'gnus-group-catchup)
  949.   (define-key gnus-group-mode-map "C" 'gnus-group-catchup-all)
  950.   (define-key gnus-group-mode-map "l" 'gnus-group-list-groups)
  951.   (define-key gnus-group-mode-map "L" 'gnus-group-list-all-groups)
  952.   (define-key gnus-group-mode-map "g" 'gnus-group-get-new-news)
  953.   (define-key gnus-group-mode-map "R" 'gnus-group-restart)
  954.   (define-key gnus-group-mode-map "b" 'gnus-group-check-bogus-groups)
  955.   (define-key gnus-group-mode-map "r" 'gnus-group-restrict-groups)
  956.   (define-key gnus-group-mode-map "a" 'gnus-group-post-news)
  957.   (define-key gnus-group-mode-map "\ek" 'gnus-group-edit-local-kill)
  958.   (define-key gnus-group-mode-map "\eK" 'gnus-group-edit-global-kill)
  959.   (define-key gnus-group-mode-map "\C-k" 'gnus-group-kill-group)
  960.   (define-key gnus-group-mode-map "\C-y" 'gnus-group-yank-group)
  961.   (define-key gnus-group-mode-map "\C-w" 'gnus-group-kill-region)
  962.   (define-key gnus-group-mode-map "\C-x\C-t" 'gnus-group-transpose-groups)
  963.   (define-key gnus-group-mode-map "\C-c\C-l" 'gnus-list-killed-groups)
  964.   (define-key gnus-group-mode-map "V" 'gnus-version)
  965.   ;;(define-key gnus-group-mode-map "x" 'gnus-group-force-update)
  966.   (define-key gnus-group-mode-map "s" 'gnus-group-force-update)
  967.   (define-key gnus-group-mode-map "z" 'gnus-group-suspend)
  968.   (define-key gnus-group-mode-map "q" 'gnus-group-exit)
  969.   (define-key gnus-group-mode-map "Q" 'gnus-group-quit)
  970.   (define-key gnus-group-mode-map "?" 'gnus-group-describe-briefly)
  971.   (define-key gnus-group-mode-map "\C-c\C-i" 'gnus-info-find-node))
  972.  
  973. (defun gnus-group-mode ()
  974.   "Major mode for reading network news.
  975. All normal editing commands are turned off.
  976. Instead, these commands are available:
  977.  
  978. SPC    Read articles in this newsgroup.
  979. =    Select this newsgroup.
  980. j    Move to the specified newsgroup.
  981. n    Move to the next unread newsgroup.
  982. p    Move to the previous unread newsgroup.
  983. C-n    Move to the next newsgroup.
  984. C-p    Move to the previous newsgroup.
  985. <    Move point to the beginning of this buffer.
  986. >    Move point to the end of this buffer.
  987. u    Unsubscribe from (subscribe to) this newsgroup.
  988. U    Unsubscribe from (subscribe to) the specified newsgroup.
  989. c    Mark all articles as read, preserving marked articles.
  990. C    Mark all articles in this newsgroup as read.
  991. l    Revert this buffer.
  992. L    List all newsgroups.
  993. g    Get new news.
  994. R    Force to read the raw .newsrc file and get new news.
  995. b    Check bogus newsgroups.
  996. r    Restrict visible newsgroups to the current region.
  997. a    Post a new article.
  998. ESC k    Edit a local KILL file applied to this newsgroup.
  999. ESC K    Edit a global KILL file applied to all newsgroups.
  1000. C-k    Kill this newsgroup.
  1001. C-y    Yank killed newsgroup here.
  1002. C-w    Kill newsgroups in current region (excluding current point).
  1003. C-x C-t    Exchange this newsgroup and previous newsgroup.
  1004. C-c C-l    list killed newsgroups.
  1005. s    Save .newsrc file.
  1006. z    Suspend reading news.
  1007. q    Quit reading news.
  1008. Q    Quit reading news without saving .newsrc file.
  1009. V    Show the version number of this GNUS.
  1010. ?    Describe Group Mode commands briefly.
  1011. C-h m    Describe Group Mode.
  1012. C-c C-i    Read Info about Group Mode.
  1013.  
  1014.   The name of the host running NNTP server is asked for if no default
  1015. host is specified. It is also possible to choose another NNTP server
  1016. even when the default server is defined by giving a prefix argument to
  1017. the command `\\[gnus]'.
  1018.  
  1019.   If an NNTP server is preceded by a colon such as `:Mail', the user's
  1020. private directory `~/Mail' is used as a news spool. This makes it
  1021. possible to read mail stored in MH folders or articles saved by GNUS.
  1022. File names of mail or articles must consist of only numeric
  1023. characters. Otherwise, they are ignored.
  1024.  
  1025.   If there is a file named `~/.newsrc-SERVER', it is used as the
  1026. startup file instead of standard one when talking to SERVER.  It is
  1027. possible to talk to many hosts by using different startup files for
  1028. each.
  1029.  
  1030.   Option `-n' of the options line in the startup file is recognized
  1031. properly the same as the Bnews system. For example, if the options
  1032. line is `options -n !talk talk.rumors', newsgroups under the `talk'
  1033. hierarchy except for `talk.rumors' are ignored while checking new
  1034. newsgroups.
  1035.  
  1036.   If there is a file named `~/.signature-DISTRIBUTION', it is used as
  1037. signature file instead of standard one when posting a news in
  1038. DISTRIBUTION.
  1039.  
  1040.   If an Info file generated from `gnus.texinfo' is installed, you can
  1041. read an appropriate Info node of the Info file according to the
  1042. current major mode of GNUS by \\[gnus-info-find-node].
  1043.  
  1044.   The variable `gnus-version', `nntp-version', `nnspool-version', and
  1045. `mhspool-version' have the version numbers of this version of gnus.el,
  1046. nntp.el, nnspool.el, and mhspoo.el, respectively.
  1047.  
  1048. User customizable variables:
  1049.  gnus-nntp-server
  1050.     Specifies the name of the host running the NNTP server. If its
  1051.     value is a string such as `:DIRECTORY', the user's private
  1052.     DIRECTORY is used as a news spool.  The variable is initialized
  1053.     from the NNTPSERVER environment variable.
  1054.  
  1055.  gnus-nntp-service
  1056.     Specifies a NNTP service name.  It is usually \"nntp\" or 119.
  1057.     Nil forces GNUS to use a local news spool if the variable
  1058.     `gnus-nntp-server' is set to the local host name.
  1059.  
  1060.  gnus-startup-file
  1061.     Specifies a startup file (.newsrc).  If there is a file named
  1062.     `.newsrc-SERVER', it's used instead when talking to SERVER.  I
  1063.     recommend you to use the server specific file, if you'd like to
  1064.     talk to many servers.  Especially if you'd like to read your
  1065.     private directory, the name of the file must be
  1066.     `.newsrc-:DIRECTORY'.
  1067.  
  1068.  gnus-signature-file
  1069.     Specifies a signature file (.signature).  If there is a file named
  1070.     `.signature-DISTRIBUTION', it's used instead when posting an
  1071.     article in DISTRIBUTION.  Set the variable to nil to prevent
  1072.     appending the file automatically.  If you use an NNTP inews which
  1073.     comes with the NNTP package, you may have to set the variable to
  1074.     nil.
  1075.  
  1076.  gnus-use-cross-reference
  1077.     Specifies what to do with cross references (Xref: field).  If it
  1078.     is nil, cross references are ignored.  If it is t, articles in
  1079.     subscribed newsgroups are only marked as read.  Otherwise, if it
  1080.     is not nil nor t, articles in all newsgroups are marked as read.
  1081.  
  1082.  gnus-use-followup-to
  1083.     Specifies what to do with followup-to: field.  If it is nil, its
  1084.     value is ignored.  If it is non-nil, its value is used as followup
  1085.     newsgroups.  Especially, if it is t and field value is `poster',
  1086.     your confirmation is required.
  1087.  
  1088.  gnus-author-copy
  1089.     Specifies a file name to save a copy of article you posted using
  1090.     FCC: field.  If the first character of the value is `|', the
  1091.     contents of the article is piped out to a program specified by the
  1092.     rest of the value.  The variable is initialized from the
  1093.     AUTHORCOPY environment variable.
  1094.  
  1095.  gnus-author-copy-saver
  1096.     Specifies a function to save an author copy.  The function is
  1097.     called with a file name.  The default function `rmail-output'
  1098.     saves in Unix mail format.
  1099.  
  1100.  gnus-kill-file-name
  1101.     Use specified file name as a KILL file (default to `KILL').
  1102.  
  1103.  gnus-novice-user
  1104.     Non-nil means that you are a novice to USENET.  If non-nil,
  1105.     verbose messages may be displayed or your confirmations may be
  1106.     required.
  1107.  
  1108.  gnus-interactive-post
  1109.     Non-nil means that newsgroup, subject and distribution are asked
  1110.     for interactively when posting a new article.
  1111.  
  1112.  gnus-use-full-window
  1113.     Non-nil means to take up the entire screen of Emacs.
  1114.  
  1115.  gnus-window-configuration
  1116.     Specifies the configuration of Group, Summary, and Article
  1117.     windows.  It is a list of (ACTION (G S A)), where G, S, and A are
  1118.     the relative height of Group, Summary, and Article windows,
  1119.     respectively.  ACTION is `summary', `newsgroups', or `article'.
  1120.  
  1121.  gnus-subscribe-newsgroup-method
  1122.     Specifies a function called with a newsgroup name when new
  1123.     newsgroup is found.  The default definition adds new newsgroup at
  1124.     the beginning of other newsgroups.
  1125.  
  1126.   And more and more.  Please refer to texinfo documentation.
  1127.  
  1128. Various hooks for customization:
  1129.  gnus-group-mode-hook
  1130.     Entry to this mode calls the value with no arguments, if that
  1131.     value is non-nil. This hook is called before GNUS is connected to
  1132.     the NNTP server. So, you can change or define the NNTP server in
  1133.     this hook.
  1134.  
  1135.  gnus-startup-hook
  1136.     Called with no arguments after the NNTP server is selected. It is
  1137.     possible to change the behavior of GNUS or initialize the
  1138.     variables according to the selected NNTP server.
  1139.  
  1140.  gnus-group-prepare-hook
  1141.     Called with no arguments after a newsgroup list is created in the
  1142.     Newsgroup buffer, if that value is non-nil.
  1143.  
  1144.  gnus-save-newsrc-hook
  1145.     Called with no arguments when saving newsrc file if that value is
  1146.     non-nil.
  1147.  
  1148.  gnus-prepare-article-hook
  1149.     Called with no arguments after preparing message body, but before
  1150.     preparing header fields which is automatically generated if that
  1151.     value is non-nil.  The default hook (gnus-inews-insert-signature)
  1152.     inserts a signature file.
  1153.  
  1154.  gnus-inews-article-hook
  1155.     Called with no arguments when posting an article if that value is
  1156.     non-nil.  This hook is called just before posting an article.  The
  1157.     default hook does FCC (save an article to the specified file).
  1158.  
  1159.  gnus-suspend-gnus-hook
  1160.     Called with no arguments when suspending (not exiting) GNUS, if
  1161.     that value is non-nil.
  1162.  
  1163.  gnus-exit-gnus-hook
  1164.     Called with no arguments when exiting (not suspending) GNUS, if
  1165.     that value is non-nil."
  1166.   (interactive)
  1167.   (kill-all-local-variables)
  1168.   ;; Gee.  Why don't you upgrade?
  1169.   (cond ((boundp 'mode-line-modified)
  1170.      (setq mode-line-modified "--- "))
  1171.     ((listp (default-value 'mode-line-format))
  1172.      (setq mode-line-format
  1173.            (cons "--- " (cdr (default-value 'mode-line-format)))))
  1174.     (t
  1175.      (setq mode-line-format
  1176.            "--- GNUS: List of Newsgroups  %[(%m)%]----%3p-%-")))
  1177.   (setq major-mode 'gnus-group-mode)
  1178.   (setq mode-name "Newsgroup")
  1179.   (setq mode-line-buffer-identification    "GNUS: List of Newsgroups")
  1180.   (setq mode-line-process nil)
  1181.   (use-local-map gnus-group-mode-map)
  1182.   (buffer-flush-undo (current-buffer))
  1183.   (setq buffer-read-only t)        ;Disable modification
  1184.   (run-hooks 'gnus-group-mode-hook))
  1185.  
  1186. ;;;###autoload
  1187. (defun gnus (&optional confirm)
  1188.   "Read network news.
  1189. If optional argument CONFIRM is non-nil, ask NNTP server."
  1190.   (interactive "P")
  1191.   (unwind-protect
  1192.       (progn
  1193.     (switch-to-buffer (get-buffer-create gnus-group-buffer))
  1194.     (gnus-group-mode)
  1195.     (gnus-start-news-server confirm))
  1196.     (if (not (gnus-server-opened))
  1197.     (gnus-group-quit)
  1198.       ;; NNTP server is successfully open. 
  1199.       (setq mode-line-process (format " {%s}" gnus-nntp-server))
  1200.       (let ((buffer-read-only nil))
  1201.     (erase-buffer)
  1202.     (gnus-group-startup-message)
  1203.     (sit-for 0))
  1204.       (run-hooks 'gnus-startup-hook)
  1205.       (gnus-setup-news)
  1206.       (if gnus-novice-user
  1207.       (gnus-group-describe-briefly)) ;Show brief help message.
  1208.       (gnus-group-list-groups nil)
  1209.       )))
  1210.  
  1211. (defun gnus-group-startup-message ()
  1212.   "Insert startup message in current buffer."
  1213.   ;; Insert the message.
  1214.   (insert "
  1215.                    GNUS Version 3.15
  1216.  
  1217.          NNTP-based News Reader for GNU Emacs
  1218.  
  1219.  
  1220. If you have any trouble with this software, please let me
  1221. know. I will fix your problems in the next release.
  1222.  
  1223. Comments, suggestions, and bug fixes are welcome.
  1224.  
  1225. Masanobu UMEDA
  1226. umerin@mse.kyutech.ac.jp")
  1227.   ;; And then hack it.
  1228.   ;; 57 is the longest line.
  1229.   (indent-rigidly (point-min) (point-max) (/ (max (- (window-width) 57) 0) 2))
  1230.   (goto-char (point-min))
  1231.   ;; +4 is fuzzy factor.
  1232.   (insert-char ?\n (/ (max (- (window-height) 18) 0) 2)))
  1233.  
  1234. (defun gnus-group-list-groups (show-all)
  1235.   "List newsgroups in the Newsgroup buffer.
  1236. If argument SHOW-ALL is non-nil, unsubscribed groups are also listed."
  1237.   (interactive "P")
  1238.   (let ((case-fold-search nil)
  1239.     (last-group            ;Current newsgroup.
  1240.      (gnus-group-group-name))
  1241.     (next-group            ;Next possible newsgroup.
  1242.      (progn
  1243.        (gnus-group-search-forward nil nil)
  1244.        (gnus-group-group-name)))
  1245.     (prev-group            ;Previous possible newsgroup.
  1246.      (progn
  1247.        (gnus-group-search-forward t nil)
  1248.        (gnus-group-group-name))))
  1249.     (set-buffer gnus-group-buffer)    ;May call from out of Group buffer
  1250.     (gnus-group-prepare show-all)
  1251.     (if (zerop (buffer-size))
  1252.     (message "No news is good news")
  1253.       ;; Go to last newsgroup if possible.  If cannot, try next and
  1254.       ;; previous.  If all fail, go to first unread newsgroup.
  1255.       (goto-char (point-min))
  1256.       (or (and last-group
  1257.            (re-search-forward (gnus-group-make-regexp last-group) nil t))
  1258.       (and next-group
  1259.            (re-search-forward (gnus-group-make-regexp next-group) nil t))
  1260.       (and prev-group
  1261.            (re-search-forward (gnus-group-make-regexp prev-group) nil t))
  1262.       (gnus-group-search-forward nil nil t))
  1263.       ;; Adjust cursor point.
  1264.       (beginning-of-line)
  1265.       (search-forward ":" nil t)
  1266.       )))
  1267.  
  1268. (defun gnus-group-prepare (&optional all)
  1269.   "Prepare list of newsgroups in current buffer.
  1270. If optional argument ALL is non-nil, unsubscribed groups are also listed."
  1271.   (let ((buffer-read-only nil)
  1272.     (newsrc gnus-newsrc-assoc)
  1273.     (group-info nil)
  1274.     (group-name nil)
  1275.     (unread-count 0)
  1276.     ;; This specifies the format of Group buffer.
  1277.     (cntl "%s%s%5d: %s\n"))
  1278.     (erase-buffer)
  1279.     ;; List newsgroups.
  1280.     (while newsrc
  1281.       (setq group-info (car newsrc))
  1282.       (setq group-name (car group-info))
  1283.       (setq unread-count (nth 1 (gnus-gethash group-name gnus-unread-hashtb)))
  1284.       (if (or all
  1285.           (and (nth 1 group-info)    ;Subscribed.
  1286.            (> unread-count 0)))    ;There are unread articles.
  1287.       ;; Yes, I can use gnus-group-prepare-line, but this is faster.
  1288.       (insert
  1289.        (format cntl
  1290.            ;; Subscribed or not.
  1291.            (if (nth 1 group-info) " " "U")
  1292.            ;; Has new news?
  1293.            (if (and (> unread-count 0)
  1294.                 (>= 0
  1295.                 (- unread-count
  1296.                    (length
  1297.                     (cdr (gnus-gethash group-name
  1298.                                gnus-marked-hashtb))))))
  1299.                "*" " ")
  1300.            ;; Number of unread articles.
  1301.            unread-count
  1302.            ;; Newsgroup name.
  1303.            group-name))
  1304.     )
  1305.       (setq newsrc (cdr newsrc))
  1306.       )
  1307.     (setq gnus-have-all-newsgroups all)
  1308.     (goto-char (point-min))
  1309.     (run-hooks 'gnus-group-prepare-hook)
  1310.     ))
  1311.  
  1312. (defun gnus-group-prepare-line (info)
  1313.   "Return a string for the Newsgroup buffer from INFO.
  1314. INFO is an element of gnus-newsrc-assoc or gnus-killed-assoc."
  1315.   (let* ((group-name (car info))
  1316.      (unread-count
  1317.       (or (nth 1 (gnus-gethash group-name gnus-unread-hashtb))
  1318.           ;; Not in hash table, so compute it now.
  1319.           (gnus-number-of-articles
  1320.            (gnus-difference-of-range
  1321.         (nth 2 (gnus-gethash group-name gnus-active-hashtb))
  1322.         (nthcdr 2 info)))))
  1323.      ;; This specifies the format of Group buffer.
  1324.      (cntl "%s%s%5d: %s\n"))
  1325.     (format cntl
  1326.         ;; Subscribed or not.
  1327.         (if (nth 1 info) " " "U")
  1328.         ;; Has new news?
  1329.         (if (and (> unread-count 0)
  1330.              (>= 0
  1331.              (- unread-count
  1332.                 (length
  1333.                  (cdr (gnus-gethash group-name
  1334.                         gnus-marked-hashtb))))))
  1335.         "*" " ")
  1336.         ;; Number of unread articles.
  1337.         unread-count
  1338.         ;; Newsgroup name.
  1339.         group-name
  1340.         )))
  1341.  
  1342. (defun gnus-group-update-group (group &optional visible-only)
  1343.   "Update newsgroup info of GROUP.
  1344. If optional argument VISIBLE-ONLY is non-nil, non displayed group is ignored."
  1345.   (let ((buffer-read-only nil)
  1346.     (case-fold-search nil)        ;appleIIgs vs. appleiigs
  1347.     (regexp (gnus-group-make-regexp group))
  1348.     (visible nil))
  1349.     ;; Buffer may be narrowed.
  1350.     (save-restriction
  1351.       (widen)
  1352.       ;; Search a line to modify.  If the buffer is large, the search
  1353.       ;; takes long time.  In most cases, current point is on the line
  1354.       ;; we are looking for.  So, first of all, check current line. 
  1355.       ;; And then if current point is in the first half, search from
  1356.       ;; the beginning.  Otherwise, search from the end.
  1357.       (if (cond ((progn
  1358.            (beginning-of-line)
  1359.            (looking-at regexp)))
  1360.         ((and (> (/ (buffer-size) 2) (point)) ;In the first half.
  1361.               (progn
  1362.             (goto-char (point-min))
  1363.             (re-search-forward regexp nil t))))
  1364.         ((progn
  1365.            (goto-char (point-max))
  1366.            (re-search-backward regexp nil t))))
  1367.       ;; GROUP is listed in current buffer. So, delete old line.
  1368.       (progn
  1369.         (setq visible t)
  1370.         (beginning-of-line)
  1371.         (delete-region (point) (progn (forward-line 1) (point)))
  1372.         )
  1373.     ;; No such line in the buffer, so insert it at the top.
  1374.     (goto-char (point-min)))
  1375.       (if (or visible (not visible-only))
  1376.       (progn
  1377.         (insert (gnus-group-prepare-line
  1378.              (gnus-gethash group gnus-newsrc-hashtb)))
  1379.         (forward-line -1)        ;Move point on that line.
  1380.         ))
  1381.       )))
  1382.  
  1383. (defun gnus-group-group-name ()
  1384.   "Get newsgroup name around point."
  1385.   (save-excursion
  1386.     (beginning-of-line)
  1387.     (if (looking-at "^.+:[ \t]+\\([^ \t\n]+\\)\\([ \t].*\\|$\\)")
  1388.     (buffer-substring (match-beginning 1) (match-end 1))
  1389.       )))
  1390.  
  1391. (defun gnus-group-make-regexp (newsgroup)
  1392.   "Return regexp that matches for a line of NEWSGROUP."
  1393.   (concat "^.+: " (regexp-quote newsgroup) "\\([ \t].*\\|$\\)"))
  1394.  
  1395. (defun gnus-group-search-forward (backward norest &optional heretoo)
  1396.   "Search for the next (or previous) newsgroup.
  1397. If 1st argument BACKWARD is non-nil, search backward instead.
  1398. If 2nd argument NOREST is non-nil, don't care about newsgroup property.
  1399. If optional argument HERETOO is non-nil, current line is searched for, too."
  1400.   (let ((case-fold-search nil)
  1401.     (func
  1402.      (if backward
  1403.          (function re-search-backward) (function re-search-forward)))
  1404.     (regexp
  1405.      (format "^%s[ \t]*\\(%s\\):"
  1406.          (if norest ".." " [ \t]")
  1407.          (if norest "[0-9]+" "[1-9][0-9]*")))
  1408.     (found nil))
  1409.     (if backward
  1410.     (if heretoo
  1411.         (end-of-line)
  1412.       (beginning-of-line))
  1413.       (if heretoo
  1414.       (beginning-of-line)
  1415.     (end-of-line)))
  1416.     (setq found (funcall func regexp nil t))
  1417.     ;; Adjust cursor point.
  1418.     (beginning-of-line)
  1419.     (search-forward ":" nil t)
  1420.     ;; Return T if found.
  1421.     found
  1422.     ))
  1423.  
  1424. ;; GNUS Group mode command
  1425.  
  1426. (defun gnus-group-read-group (all &optional no-article)
  1427.   "Read news in this newsgroup.
  1428. If argument ALL is non-nil, already read articles become readable.
  1429. If optional argument NO-ARTICLE is non-nil, no article body is displayed."
  1430.   (interactive "P")
  1431.   (let ((group (gnus-group-group-name))) ;Newsgroup name to read.
  1432.     (if group
  1433.     (gnus-summary-read-group
  1434.      group
  1435.      (or all
  1436.          ;;(not (nth 1 (gnus-gethash group gnus-newsrc-hashtb))) ;Unsubscribed
  1437.          (zerop
  1438.           (nth 1 (gnus-gethash group gnus-unread-hashtb))))    ;No unread
  1439.      no-article
  1440.      ))
  1441.     ))
  1442.  
  1443. (defun gnus-group-select-group (all)
  1444.   "Select this newsgroup.
  1445. No article is selected automatically.
  1446. If argument ALL is non-nil, already read articles become readable."
  1447.   (interactive "P")
  1448.   (gnus-group-read-group all t))
  1449.  
  1450. (defun gnus-group-jump-to-group (group)
  1451.   "Jump to newsgroup GROUP."
  1452.   (interactive
  1453.    (list (completing-read "Newsgroup: " gnus-newsrc-assoc nil 'require-match)))
  1454.   (let ((case-fold-search nil))
  1455.     (goto-char (point-min))
  1456.     (or (re-search-forward (gnus-group-make-regexp group) nil t)
  1457.     (if (gnus-gethash group gnus-newsrc-hashtb)
  1458.         ;; Add GROUP entry, then seach again.
  1459.         (gnus-group-update-group group)))
  1460.     ;; Adjust cursor point.
  1461.     (beginning-of-line)
  1462.     (search-forward ":" nil t)
  1463.     ))
  1464.  
  1465. (defun gnus-group-next-group (n)
  1466.   "Go to next N'th newsgroup."
  1467.   (interactive "p")
  1468.   (while (and (> n 1)
  1469.           (gnus-group-search-forward nil t))
  1470.     (setq n (1- n)))
  1471.   (or (gnus-group-search-forward nil t)
  1472.       (message "No more newsgroups")))
  1473.  
  1474. (defun gnus-group-next-unread-group (n)
  1475.   "Go to next N'th unread newsgroup."
  1476.   (interactive "p")
  1477.   (while (and (> n 1)
  1478.           (gnus-group-search-forward nil nil))
  1479.     (setq n (1- n)))
  1480.   (or (gnus-group-search-forward nil nil)
  1481.       (message "No more unread newsgroups")))
  1482.  
  1483. (defun gnus-group-prev-group (n)
  1484.   "Go to previous N'th newsgroup."
  1485.   (interactive "p")
  1486.   (while (and (> n 1)
  1487.           (gnus-group-search-forward t t))
  1488.     (setq n (1- n)))
  1489.   (or (gnus-group-search-forward t t)
  1490.       (message "No more newsgroups")))
  1491.  
  1492. (defun gnus-group-prev-unread-group (n)
  1493.   "Go to previous N'th unread newsgroup."
  1494.   (interactive "p")
  1495.   (while (and (> n 1)
  1496.           (gnus-group-search-forward t nil))          
  1497.     (setq n (1- n)))
  1498.   (or (gnus-group-search-forward t nil)
  1499.       (message "No more unread newsgroups")))
  1500.  
  1501. (defun gnus-group-catchup (all)
  1502.   "Mark all articles not marked as unread in current newsgroup as read.
  1503. If prefix argument ALL is non-nil, all articles are marked as read.
  1504. Cross references (Xref: field) of articles are ignored."
  1505.   (interactive "P")
  1506.   (let* ((group (gnus-group-group-name))
  1507.          (marked (if (not all)
  1508.              (cdr (gnus-gethash group gnus-marked-hashtb)))))
  1509.     (and group
  1510.      (or (not gnus-interactive-catchup) ;Without confirmation?
  1511.          (y-or-n-p
  1512.           (if all
  1513.           "Do you really want to mark everything as read? "
  1514.         "Delete all articles not marked as read? ")))
  1515.      (progn
  1516.        (message "")            ;Clear "Yes or No" question.
  1517.        ;; Any marked articles will be preserved.
  1518.        (gnus-update-unread-articles group marked marked)
  1519.        (gnus-group-update-group group)
  1520.        (gnus-group-next-group 1)))
  1521.     ))
  1522.  
  1523. (defun gnus-group-catchup-all ()
  1524.   "Mark all articles in current newsgroup as read.
  1525. Cross references (Xref: field) of articles are ignored."
  1526.   (interactive)
  1527.   (gnus-group-catchup t))
  1528.  
  1529. (defun gnus-group-unsubscribe-current-group ()
  1530.   "Toggle subscribe from/to unsubscribe current group."
  1531.   (interactive)
  1532.   (gnus-group-unsubscribe-group (gnus-group-group-name))
  1533.   (gnus-group-next-group 1))
  1534.  
  1535. (defun gnus-group-unsubscribe-group (group)
  1536.   "Toggle subscribe from/to unsubscribe GROUP.
  1537. New newsgroup is added to .newsrc automatically."
  1538.   (interactive
  1539.    (list (completing-read "Newsgroup: "
  1540.               gnus-active-hashtb nil 'require-match)))
  1541.   (let ((newsrc (gnus-gethash group gnus-newsrc-hashtb)))
  1542.     (cond ((not (null newsrc))
  1543.        ;; Toggle subscription flag.
  1544.        (setcar (nthcdr 1 newsrc) (not (nth 1 newsrc)))
  1545.        (gnus-update-newsrc-buffer group)
  1546.        (gnus-group-update-group group)
  1547.        ;; Adjust cursor point.
  1548.        (beginning-of-line)
  1549.        (search-forward ":" nil t))
  1550.       ((and (stringp group)
  1551.         (gnus-gethash group gnus-active-hashtb))
  1552.        ;; Add new newsgroup.
  1553.        (gnus-add-newsgroup group)
  1554.        (gnus-group-update-group group)
  1555.        ;; Adjust cursor point.
  1556.        (beginning-of-line)
  1557.        (search-forward ":" nil t))
  1558.       (t (error "No such newsgroup: %s" group)))
  1559.     ))
  1560.  
  1561. (defun gnus-group-list-all-groups ()
  1562.   "List all of newsgroups in the Newsgroup buffer."
  1563.   (interactive)
  1564.   (gnus-group-list-groups t))
  1565.  
  1566. (defun gnus-group-get-new-news ()
  1567.   "Get newly arrived articles. In fact, read the active file again."
  1568.   (interactive)
  1569.   (gnus-setup-news)
  1570.   (gnus-group-list-groups gnus-have-all-newsgroups))
  1571.  
  1572. (defun gnus-group-restart ()
  1573.   "Force GNUS to read the raw startup file."
  1574.   (interactive)
  1575.   (gnus-save-newsrc-file)
  1576.   (gnus-setup-news t)            ;Force to read the raw startup file.
  1577.   (gnus-group-list-groups gnus-have-all-newsgroups))
  1578.  
  1579. (defun gnus-group-check-bogus-groups ()
  1580.   "Check bogus newsgroups."
  1581.   (interactive)
  1582.   (gnus-check-bogus-newsgroups t)    ;Require confirmation.
  1583.   (gnus-group-list-groups gnus-have-all-newsgroups))
  1584.  
  1585. (defun gnus-group-restrict-groups (start end)
  1586.   "Restrict visible newsgroups to the current region (START and END).
  1587. Type \\[widen] to remove restriction."
  1588.   (interactive "r")
  1589.   (save-excursion
  1590.     (narrow-to-region (progn
  1591.             (goto-char start)
  1592.             (beginning-of-line)
  1593.             (point))
  1594.               (progn
  1595.             (goto-char end)
  1596.             (forward-line 1)
  1597.             (point))))
  1598.   (message (substitute-command-keys "Type \\[widen] to remove restriction")))
  1599.  
  1600. (defun gnus-group-edit-global-kill ()
  1601.   "Edit a global KILL file."
  1602.   (interactive)
  1603.   (setq gnus-current-kill-article nil)    ;No articles selected.
  1604.   (gnus-kill-file-edit-file nil)     ;Nil stands for global KILL file.
  1605.   (message
  1606.    (substitute-command-keys
  1607.     "Editing a global KILL file (Type \\[gnus-kill-file-exit] to exit)")))
  1608.  
  1609. (defun gnus-group-edit-local-kill ()
  1610.   "Edit a local KILL file."
  1611.   (interactive)
  1612.   (setq gnus-current-kill-article nil)    ;No articles selected.
  1613.   (gnus-kill-file-edit-file (gnus-group-group-name))
  1614.   (message
  1615.    (substitute-command-keys
  1616.     "Editing a local KILL file (Type \\[gnus-kill-file-exit] to exit)")))
  1617.  
  1618. (defun gnus-group-force-update ()
  1619.   "Update .newsrc file."
  1620.   (interactive)
  1621.   (gnus-save-newsrc-file))
  1622.  
  1623. (defun gnus-group-suspend ()
  1624.   "Suspend the current GNUS session.
  1625. In fact, cleanup buffers except for Group Mode buffer.
  1626. The hook gnus-suspend-gnus-hook is called before actually suspending."
  1627.   (interactive)
  1628.   (run-hooks 'gnus-suspend-gnus-hook)
  1629.   ;; Kill GNUS buffers except for Group Mode buffer.
  1630.   (let ((buffers gnus-buffer-list))
  1631.     (while buffers
  1632.       (and (not (eq (car buffers) gnus-group-buffer))
  1633.        (get-buffer (car buffers))
  1634.        (kill-buffer (car buffers)))
  1635.       (setq buffers (cdr buffers))
  1636.       ))
  1637.   (bury-buffer))
  1638.  
  1639. (defun gnus-group-exit ()
  1640.   "Quit reading news after updating .newsrc.
  1641. The hook gnus-exit-gnus-hook is called before actually quitting."
  1642.   (interactive)
  1643.   (if (or noninteractive        ;For gnus-batch-kill
  1644.       (zerop (buffer-size))        ;No news is good news.
  1645.       (not (gnus-server-opened))    ;NNTP connection closed.
  1646.       (not gnus-interactive-exit)    ;Without confirmation
  1647.       (y-or-n-p "Are you sure you want to quit reading news? "))
  1648.       (progn
  1649.     (message "")            ;Erase "Yes or No" question.
  1650.     (run-hooks 'gnus-exit-gnus-hook)
  1651.     (gnus-save-newsrc-file)
  1652.     (gnus-clear-system)
  1653.     (gnus-close-server))
  1654.     ))
  1655.  
  1656. (defun gnus-group-quit ()
  1657.   "Quit reading news without updating .newsrc.
  1658. The hook gnus-exit-gnus-hook is called before actually quitting."
  1659.   (interactive)
  1660.   (if (or noninteractive        ;For gnus-batch-kill
  1661.       (zerop (buffer-size))
  1662.       (not (gnus-server-opened))
  1663.       (yes-or-no-p
  1664.        (format "Quit reading news without saving %s? "
  1665.            (file-name-nondirectory gnus-current-startup-file))))
  1666.       (progn
  1667.     (message "")            ;Erase "Yes or No" question.
  1668.     (run-hooks 'gnus-exit-gnus-hook)
  1669.     (gnus-clear-system)
  1670.     (gnus-close-server))
  1671.     ))
  1672.  
  1673. (defun gnus-group-describe-briefly ()
  1674.   "Describe Group mode commands briefly."
  1675.   (interactive)
  1676.   (message
  1677.    (concat
  1678.     (substitute-command-keys "\\[gnus-group-read-group]:Select  ")
  1679.     (substitute-command-keys "\\[gnus-group-next-unread-group]:Forward  ")
  1680.     (substitute-command-keys "\\[gnus-group-prev-unread-group]:Backward  ")
  1681.     (substitute-command-keys "\\[gnus-group-exit]:Exit  ")
  1682.     (substitute-command-keys "\\[gnus-info-find-node]:Run Info  ")
  1683.     (substitute-command-keys "\\[gnus-group-describe-briefly]:This help")
  1684.     )))
  1685.  
  1686.  
  1687. ;;;
  1688. ;;; GNUS Summary Mode
  1689. ;;;
  1690.  
  1691. (if gnus-summary-mode-map
  1692.     nil
  1693.   (setq gnus-summary-mode-map (make-keymap))
  1694.   (suppress-keymap gnus-summary-mode-map)
  1695.   (define-key gnus-summary-mode-map " " 'gnus-summary-next-page)
  1696.   (define-key gnus-summary-mode-map "\177" 'gnus-summary-prev-page)
  1697.   (define-key gnus-summary-mode-map "\r" 'gnus-summary-scroll-up)
  1698.   (define-key gnus-summary-mode-map "n" 'gnus-summary-next-unread-article)
  1699.   (define-key gnus-summary-mode-map "p" 'gnus-summary-prev-unread-article)
  1700.   (define-key gnus-summary-mode-map "N" 'gnus-summary-next-article)
  1701.   (define-key gnus-summary-mode-map "P" 'gnus-summary-prev-article)
  1702.   (define-key gnus-summary-mode-map "\e\C-n" 'gnus-summary-next-same-subject)
  1703.   (define-key gnus-summary-mode-map "\e\C-p" 'gnus-summary-prev-same-subject)
  1704.   ;;(define-key gnus-summary-mode-map "\e\C-n" 'gnus-summary-next-unread-same-subject)
  1705.   ;;(define-key gnus-summary-mode-map "\e\C-p" 'gnus-summary-prev-unread-same-subject)
  1706.   (define-key gnus-summary-mode-map "\C-c\C-n" 'gnus-summary-next-digest)
  1707.   (define-key gnus-summary-mode-map "\C-c\C-p" 'gnus-summary-prev-digest)
  1708.   (define-key gnus-summary-mode-map "\C-n" 'gnus-summary-next-subject)
  1709.   (define-key gnus-summary-mode-map "\C-p" 'gnus-summary-prev-subject)
  1710.   (define-key gnus-summary-mode-map "\en" 'gnus-summary-next-unread-subject)
  1711.   (define-key gnus-summary-mode-map "\ep" 'gnus-summary-prev-unread-subject)
  1712.   ;;(define-key gnus-summary-mode-map "\C-cn" 'gnus-summary-next-group)
  1713.   ;;(define-key gnus-summary-mode-map "\C-cp" 'gnus-summary-prev-group)
  1714.   (define-key gnus-summary-mode-map "." 'gnus-summary-first-unread-article)
  1715.   ;;(define-key gnus-summary-mode-map "/" 'isearch-forward)
  1716.   (define-key gnus-summary-mode-map "s" 'gnus-summary-isearch-article)
  1717.   (define-key gnus-summary-mode-map "\es" 'gnus-summary-search-article-forward)
  1718.   ;;(define-key gnus-summary-mode-map "\eS" 'gnus-summary-search-article-backward)
  1719.   (define-key gnus-summary-mode-map "\er" 'gnus-summary-search-article-backward)
  1720.   (define-key gnus-summary-mode-map "<" 'gnus-summary-beginning-of-article)
  1721.   (define-key gnus-summary-mode-map ">" 'gnus-summary-end-of-article)
  1722.   (define-key gnus-summary-mode-map "j" 'gnus-summary-goto-subject)
  1723.   ;;(define-key gnus-summary-mode-map "J" 'gnus-summary-goto-article)
  1724.   (define-key gnus-summary-mode-map "l" 'gnus-summary-goto-last-article)
  1725.   (define-key gnus-summary-mode-map "^" 'gnus-summary-refer-parent-article)
  1726.   ;;(define-key gnus-summary-mode-map "\er" 'gnus-summary-refer-article)
  1727.   (define-key gnus-summary-mode-map "\e^" 'gnus-summary-refer-article)
  1728.   (define-key gnus-summary-mode-map "u" 'gnus-summary-mark-as-unread-forward)
  1729.   (define-key gnus-summary-mode-map "U" 'gnus-summary-mark-as-unread-backward)
  1730.   (define-key gnus-summary-mode-map "d" 'gnus-summary-mark-as-read-forward)
  1731.   (define-key gnus-summary-mode-map "D" 'gnus-summary-mark-as-read-backward)
  1732.   (define-key gnus-summary-mode-map "\eu" 'gnus-summary-clear-mark-forward)
  1733.   (define-key gnus-summary-mode-map "\eU" 'gnus-summary-clear-mark-backward)
  1734.   (define-key gnus-summary-mode-map "k" 'gnus-summary-kill-same-subject-and-select)
  1735.   (define-key gnus-summary-mode-map "\C-k" 'gnus-summary-kill-same-subject)
  1736.   (define-key gnus-summary-mode-map "\e\C-t" 'gnus-summary-toggle-threads)
  1737.   (define-key gnus-summary-mode-map "\e\C-s" 'gnus-summary-show-thread)
  1738.   (define-key gnus-summary-mode-map "\e\C-h" 'gnus-summary-hide-thread)
  1739.   (define-key gnus-summary-mode-map "\e\C-f" 'gnus-summary-next-thread)
  1740.   (define-key gnus-summary-mode-map "\e\C-b" 'gnus-summary-prev-thread)
  1741.   (define-key gnus-summary-mode-map "\e\C-u" 'gnus-summary-up-thread)
  1742.   (define-key gnus-summary-mode-map "\e\C-d" 'gnus-summary-down-thread)
  1743.   (define-key gnus-summary-mode-map "\e\C-k" 'gnus-summary-kill-thread)
  1744.   (define-key gnus-summary-mode-map "&" 'gnus-summary-execute-command)
  1745.   ;;(define-key gnus-summary-mode-map "c" 'gnus-summary-catchup)
  1746.   ;;(define-key gnus-summary-mode-map "c" 'gnus-summary-catchup-all)
  1747.   (define-key gnus-summary-mode-map "c" 'gnus-summary-catchup-and-exit)
  1748.   ;;(define-key gnus-summary-mode-map "c" 'gnus-summary-catchup-all-and-exit)
  1749.   (define-key gnus-summary-mode-map "\C-t" 'gnus-summary-toggle-truncation)
  1750.   (define-key gnus-summary-mode-map "x" 'gnus-summary-delete-marked-as-read)
  1751.   (define-key gnus-summary-mode-map "X" 'gnus-summary-delete-marked-with)
  1752.   (define-key gnus-summary-mode-map "\C-c\C-sn" 'gnus-summary-sort-by-number)
  1753.   (define-key gnus-summary-mode-map "\C-c\C-sa" 'gnus-summary-sort-by-author)
  1754.   (define-key gnus-summary-mode-map "\C-c\C-ss" 'gnus-summary-sort-by-subject)
  1755.   (define-key gnus-summary-mode-map "\C-c\C-sd" 'gnus-summary-sort-by-date)
  1756.   (define-key gnus-summary-mode-map "\C-c\C-s\C-n" 'gnus-summary-sort-by-number)
  1757.   (define-key gnus-summary-mode-map "\C-c\C-s\C-a" 'gnus-summary-sort-by-author)
  1758.   (define-key gnus-summary-mode-map "\C-c\C-s\C-s" 'gnus-summary-sort-by-subject)
  1759.   (define-key gnus-summary-mode-map "\C-c\C-s\C-d" 'gnus-summary-sort-by-date)
  1760.   (define-key gnus-summary-mode-map "=" 'gnus-summary-expand-window)
  1761.   ;;(define-key gnus-summary-mode-map "G" 'gnus-summary-reselect-current-group)
  1762.   (define-key gnus-summary-mode-map "\C-x\C-s" 'gnus-summary-reselect-current-group)
  1763.   (define-key gnus-summary-mode-map "w" 'gnus-summary-stop-page-breaking)
  1764.   (define-key gnus-summary-mode-map "\C-c\C-r" 'gnus-summary-caesar-message)
  1765.   (define-key gnus-summary-mode-map "g" 'gnus-summary-show-article)
  1766.   (define-key gnus-summary-mode-map "t" 'gnus-summary-toggle-header)
  1767.   ;;(define-key gnus-summary-mode-map "v" 'gnus-summary-show-all-headers)
  1768.   (define-key gnus-summary-mode-map "\et" 'gnus-summary-toggle-mime)
  1769.   (define-key gnus-summary-mode-map "\C-d" 'gnus-summary-rmail-digest)
  1770.   (define-key gnus-summary-mode-map "a" 'gnus-summary-post-news)
  1771.   (define-key gnus-summary-mode-map "f" 'gnus-summary-followup)
  1772.   (define-key gnus-summary-mode-map "F" 'gnus-summary-followup-with-original)
  1773.   (define-key gnus-summary-mode-map "C" 'gnus-summary-cancel-article)
  1774.   (define-key gnus-summary-mode-map "r" 'gnus-summary-reply)
  1775.   (define-key gnus-summary-mode-map "R" 'gnus-summary-reply-with-original)
  1776.   (define-key gnus-summary-mode-map "\C-c\C-f" 'gnus-summary-mail-forward)
  1777.   (define-key gnus-summary-mode-map "m" 'gnus-summary-mail-other-window)
  1778.   (define-key gnus-summary-mode-map "o" 'gnus-summary-save-article)
  1779.   (define-key gnus-summary-mode-map "\C-o" 'gnus-summary-save-in-mail)
  1780.   (define-key gnus-summary-mode-map "|" 'gnus-summary-pipe-output)
  1781.   (define-key gnus-summary-mode-map "\ek" 'gnus-summary-edit-local-kill)
  1782.   (define-key gnus-summary-mode-map "\eK" 'gnus-summary-edit-global-kill)
  1783.   (define-key gnus-summary-mode-map "V" 'gnus-version)
  1784.   (define-key gnus-summary-mode-map "q" 'gnus-summary-exit)
  1785.   (define-key gnus-summary-mode-map "Q" 'gnus-summary-quit)
  1786.   (define-key gnus-summary-mode-map "?" 'gnus-summary-describe-briefly)
  1787.   (define-key gnus-summary-mode-map "\C-c\C-i" 'gnus-info-find-node))
  1788.  
  1789. (defun gnus-summary-mode ()
  1790.   "Major mode for reading articles in this newsgroup.
  1791. All normal editing commands are turned off.
  1792. Instead, these commands are available:
  1793.  
  1794. SPC    Scroll to the next page of the current article.  The next unread
  1795.     article is selected automatically at the end of the message.
  1796. DEL    Scroll to the previous page of the current article.
  1797. RET    Scroll up (or down) one line the current article.
  1798. n    Move to the next unread article.
  1799. p    Move to the previous unread article.
  1800. N    Move to the next article.
  1801. P    Move to the previous article.
  1802. ESC C-n    Move to the next article which has the same subject as the
  1803.     current article.
  1804. ESC C-p    Move to the previous article which has the same subject as the
  1805.     current article.
  1806. \\[gnus-summary-next-unread-same-subject]
  1807.     Move to the next unread article which has the same subject as the
  1808.     current article.
  1809. \\[gnus-summary-prev-unread-same-subject]
  1810.     Move to the previous unread article which has the same subject as
  1811.     the current article.
  1812. C-c C-n    Scroll to the next digested message of the current article.
  1813. C-c C-p    Scroll to the previous digested message of the current article.
  1814. C-n    Move to the next subject.
  1815. C-p    Move to the previous subject.
  1816. ESC n    Move to the next unread subject.
  1817. ESC p    Move to the previous unread subject.
  1818. \\[gnus-summary-next-group]
  1819.     Exit the current newsgroup and select the next unread newsgroup.
  1820. \\[gnus-summary-prev-group]
  1821.     Exit the current newsgroup and select the previous unread newsgroup.
  1822. .    Jump to the first unread article in the current newsgroup.
  1823. s    Do an incremental search forward on the current article.
  1824. ESC s    Search for an article containing a regexp forward.
  1825. ESC r    Search for an article containing a regexp backward.
  1826. <    Move point to the beginning of the current article.
  1827. >    Move point to the end of the current article.
  1828. j    Jump to the article specified by the numeric article ID.
  1829. l    Jump to the article you read last.
  1830. ^    Refer to parent of the current article.
  1831. ESC ^    Refer to the article specified by the Message-ID.
  1832. u    Mark the current article as unread, and go forward.
  1833. U    Mark the current article as unread, and go backward.
  1834. d    Mark the current article as read, and go forward.
  1835. D    Mark the current article as read, and go backward.
  1836. ESC u    Clear the current article's mark, and go forward.
  1837. ESC U    Clear the current article's mark, and go backward.
  1838. k    Mark articles which has the same subject as the current article as
  1839.     read, and then select the next unread article.
  1840. C-k    Mark articles which has the same subject as the current article as
  1841.     read.
  1842. ESC k    Edit a local KILL file applied to the current newsgroup.
  1843. ESC K    Edit a global KILL file applied to all newsgroups.
  1844. ESC C-t    Toggle showing conversation threads.
  1845. ESC C-s    Show thread subtrees.
  1846. ESC C-h    Hide thread subtrees.
  1847. \\[gnus-summary-show-all-threads]    Show all thread subtrees.
  1848. \\[gnus-summary-hide-all-threads]    Hide all thread subtrees.
  1849. ESC C-f    Go to the same level next thread.
  1850. ESC C-b    Go to the same level previous thread.
  1851. ESC C-d    Go downward current thread.
  1852. ESC C-u    Go upward current thread.
  1853. ESC C-k    Mark articles under current thread as read.
  1854. &    Execute a command for each article conditionally.
  1855. \\[gnus-summary-catchup]
  1856.     Mark all articles as read in the current newsgroup, preserving
  1857.     articles marked as unread.
  1858. \\[gnus-summary-catchup-all]
  1859.     Mark all articles as read in the current newsgroup.
  1860. \\[gnus-summary-catchup-and-exit]
  1861.     Catch up all articles not marked as unread, and then exit the
  1862.     current newsgroup.
  1863. \\[gnus-summary-catchup-all-and-exit]
  1864.     Catch up all articles, and then exit the current newsgroup.
  1865. C-t    Toggle truncations of subject lines.
  1866. x    Delete subject lines marked as read.
  1867. X    Delete subject lines with the specific marks.
  1868. C-c C-s C-n    Sort subjects by article number.
  1869. C-c C-s C-a    Sort subjects by article author.
  1870. C-c C-s C-s    Sort subjects alphabetically.
  1871. C-c C-s C-d    Sort subjects by date.
  1872. =    Expand Summary window to show headers full window.
  1873. C-x C-s    Reselect the current newsgroup. Prefix argument means to select all.
  1874. w    Stop page breaking by linefeed.
  1875. C-c C-r    Caesar rotates letters by 13/47 places.
  1876. g    Force to show the current article.
  1877. t    Show original article header if pruned header currently shown, or
  1878.     vice versa.
  1879. ESC-t    Toggle MIME processing.
  1880. C-d    Run RMAIL on the current digest article.
  1881. a    Post a new article.
  1882. f    Post a reply article.
  1883. F    Post a reply article with original article.
  1884. C    Cancel the current article.
  1885. r    Mail a message to the author.
  1886. R    Mail a message to the author with original author.
  1887. C-c C-f    Forward the current message to another user.
  1888. m    Mail a message in other window.
  1889. o    Save the current article in your favorite format.
  1890. C-o    Append the current article to a file in Unix mail format.
  1891. |    Pipe the contents of the current article to a subprocess.
  1892. q    Quit reading news in the current newsgroup.
  1893. Q    Quit reading news without recording unread articles information.
  1894. V    Show the version number of this GNUS.
  1895. ?    Describe Summary mode commands briefly.
  1896. C-h m    Describe Summary mode.
  1897. C-c C-i    Read Info about Summary mode.
  1898.  
  1899. User customizable variables:
  1900.  gnus-large-newsgroup
  1901.     The number of articles which indicates a large newsgroup. If the
  1902.     number of articles in a newsgroup is greater than the value, the
  1903.     number of articles to be selected is asked for. If the given value
  1904.     N is positive, the last N articles is selected. If N is negative,
  1905.     the first N articles are selected. An empty string means to select
  1906.     all articles.
  1907.  
  1908.  gnus-use-long-file-name
  1909.     Non-nil means that a newsgroup name is used as a default file name
  1910.     to save articles to. If it's nil, the directory form of a
  1911.     newsgroup is used instead.
  1912.  
  1913.  gnus-default-article-saver
  1914.     Specifies your favorite article saver which is interactively
  1915.     funcallable. Following functions are available:
  1916.  
  1917.     gnus-summary-save-in-rmail (in Rmail format)
  1918.     gnus-summary-save-in-mail (in Unix mail format)
  1919.     gnus-summary-save-in-folder (in MH folder)
  1920.     gnus-summary-save-in-file (in article format).
  1921.  
  1922.  gnus-rmail-save-name
  1923.  gnus-mail-save-name
  1924.  gnus-folder-save-name
  1925.  gnus-file-save-name
  1926.     Specifies a function generating a file name to save articles in
  1927.     specified format.  The function is called with NEWSGROUP, HEADERS,
  1928.     and optional LAST-FILE.  Access macros to the headers are defined
  1929.     as nntp-header-FIELD, and functions are defined as
  1930.     gnus-header-FIELD.
  1931.  
  1932.  gnus-article-save-directory
  1933.     Specifies a directory name to save articles to using the commands
  1934.     gnus-summary-save-in-rmail, gnus-summary-save-in-mail and
  1935.     gnus-summary-save-in-file. The variable is initialized from the
  1936.     SAVEDIR environment variable.
  1937.  
  1938.  gnus-show-all-headers
  1939.     Non-nil means that all headers of an article are shown.
  1940.  
  1941.  gnus-save-all-headers
  1942.     Non-nil means that all headers of an article are saved in a file.
  1943.  
  1944.  gnus-show-mime
  1945.     Non-nil means that show a MIME message.
  1946.  
  1947.  gnus-show-threads
  1948.     Non-nil means that conversation threads are shown in tree structure.
  1949.  
  1950.  gnus-thread-hide-subject
  1951.     Non-nil means that subjects for thread subtrees are hidden.
  1952.  
  1953.  gnus-thread-hide-subtree
  1954.     Non-nil means that thread subtrees are hidden initially.
  1955.  
  1956.  gnus-thread-hide-killed
  1957.     Non-nil means that killed thread subtrees are hidden automatically.
  1958.  
  1959.  gnus-thread-ignore-subject
  1960.     Non-nil means that subject differences are ignored in constructing
  1961.     thread trees.
  1962.  
  1963.  gnus-thread-indent-level
  1964.     Indentation of thread subtrees.
  1965.  
  1966.  gnus-optional-headers
  1967.     Specifies a function which generates an optional string displayed
  1968.     in the Summary buffer. The function is called with an article
  1969.     HEADERS.  The result must be a string excluding `[' and `]'.  The
  1970.     default function returns a string like NNN:AUTHOR, where NNN is
  1971.     the number of lines in an article and AUTHOR is the name of the
  1972.     author.
  1973.  
  1974.  gnus-auto-extend-newsgroup
  1975.     Non-nil means visible articles are extended to forward and
  1976.     backward automatically if possible.
  1977.  
  1978.  gnus-auto-select-first
  1979.     Non-nil means the first unread article is selected automagically
  1980.     when a newsgroup is selected normally (by gnus-group-read-group).
  1981.     If you'd like to prevent automatic selection of the first unread
  1982.     article in some newsgroups, set the variable to nil in
  1983.     gnus-select-group-hook or gnus-apply-kill-hook.
  1984.  
  1985.  gnus-auto-select-next
  1986.     Non-nil means the next newsgroup is selected automagically at the
  1987.     end of the newsgroup. If the value is t and the next newsgroup is
  1988.     empty (no unread articles), GNUS will exit Summary mode and go
  1989.     back to Group mode. If the value is neither nil nor t, GNUS won't
  1990.     exit Summary mode but select the following unread newsgroup.
  1991.     Especially, if the value is the symbol `quietly', the next unread
  1992.     newsgroup will be selected without any confirmations.
  1993.  
  1994.  gnus-auto-select-same
  1995.     Non-nil means an article with the same subject as the current
  1996.     article is selected automagically like `rn -S'.
  1997.  
  1998.  gnus-auto-center-summary
  1999.     Non-nil means the point of Summary Mode window is always kept
  2000.     centered.
  2001.  
  2002.  gnus-break-pages
  2003.     Non-nil means an article is broken into pages at page delimiters.
  2004.     This may not work with some versions of GNU Emacs earlier than
  2005.     version 18.50.
  2006.  
  2007.  gnus-page-delimiter
  2008.     Specifies a regexp describing line-beginnings that separate pages
  2009.     of news article.
  2010.  
  2011.  [gnus-more-message is obsolete.  overlay-arrow-string interfares
  2012.     with other subsystems, such as dbx mode.]
  2013.  
  2014.  gnus-digest-show-summary
  2015.     Non-nil means that a summary of digest messages is shown when
  2016.     reading a digest article using `gnus-summary-rmail-digest'
  2017.     command.
  2018.  
  2019.  gnus-digest-separator
  2020.     Specifies a regexp separating messages in a digest article.
  2021.  
  2022.  gnus-mail-reply-method
  2023.  gnus-mail-other-window-method
  2024.     Specifies a function to begin composing mail message using
  2025.     commands gnus-summary-reply and gnus-summary-mail-other-window.
  2026.     Functions gnus-mail-reply-using-mail and gnus-mail-reply-using-mhe
  2027.     are available for the value of gnus-mail-reply-method.  And
  2028.     functions gnus-mail-other-window-using-mail and
  2029.     gnus-mail-other-window-using-mhe are available for the value of
  2030.     gnus-mail-other-window-method.
  2031.  
  2032.  gnus-mail-send-method
  2033.     Specifies a function to mail a message too which is being posted
  2034.     as an article.  The message must have To: or Cc: field.  The value
  2035.     of the variable send-mail-function is the default function which
  2036.     uses sendmail mail program.
  2037.  
  2038. Various hooks for customization:
  2039.  gnus-summary-mode-hook
  2040.     Entry to this mode calls the value with no arguments, if that
  2041.     value is non-nil.
  2042.  
  2043.  gnus-select-group-hook
  2044.     Called with no arguments when newsgroup is selected, if that value
  2045.     is non-nil. It is possible to sort subjects in this hook. See the
  2046.     documentation of this variable for more information.
  2047.  
  2048.  gnus-summary-prepare-hook
  2049.     Called with no arguments after a summary list is created in the
  2050.     Summary buffer, if that value is non-nil. If you'd like to modify
  2051.     the buffer, you can use this hook.
  2052.  
  2053.  gnus-select-article-hook
  2054.     Called with no arguments when an article is selected, if that
  2055.     value is non-nil. See the documentation of this variable for more
  2056.     information.
  2057.  
  2058.  gnus-select-digest-hook
  2059.     Called with no arguments when reading digest messages using Rmail,
  2060.     if that value is non-nil. This hook can be used to modify an
  2061.     article so that Rmail can work with it. See the documentation of
  2062.     the variable for more information.
  2063.  
  2064.  gnus-rmail-digest-hook
  2065.     Called with no arguments when reading digest messages using Rmail,
  2066.     if that value is non-nil. This hook is intended to customize Rmail
  2067.     mode.
  2068.  
  2069.  gnus-apply-kill-hook
  2070.     Called with no arguments when a newsgroup is selected and the
  2071.     Summary buffer is prepared. This hook is intended to apply a KILL
  2072.     file to the selected newsgroup. The format of KILL file is
  2073.     completely different from that of version 3.8. You have to rewrite
  2074.     them in the new format. See the documentation of Kill file mode
  2075.     for more information.
  2076.  
  2077.  gnus-mark-article-hook
  2078.     Called with no arguments when an article is selected at the first
  2079.     time. The hook is intended to mark an article as read (or unread)
  2080.     automatically when it is selected.  See the documentation of the
  2081.     variable for more information.
  2082.  
  2083.  gnus-exit-group-hook
  2084.     Called with no arguments when exiting the current newsgroup, if
  2085.     that value is non-nil. If your machine is so slow that exiting
  2086.     from Summary mode takes very long time, inhibit marking articles
  2087.     as read using cross-references by setting the variable
  2088.     gnus-use-cross-reference to nil in this hook."
  2089.   (interactive)
  2090.   (kill-all-local-variables)
  2091.   ;; Gee.  Why don't you upgrade?
  2092.   (cond ((boundp 'mode-line-modified)
  2093.      (setq mode-line-modified "--- "))
  2094.     ((listp (default-value 'mode-line-format))
  2095.      (setq mode-line-format
  2096.            (cons "--- " (cdr (default-value 'mode-line-format))))))
  2097.   ;; To disable display-time facility.
  2098.   ;;(make-local-variable 'global-mode-string)
  2099.   ;;(setq global-mode-string nil)
  2100.   (setq major-mode 'gnus-summary-mode)
  2101.   (setq mode-name "Summary")
  2102.   ;;(setq mode-line-process '(" " gnus-newsgroup-name))
  2103.   (make-local-variable 'minor-mode-alist)
  2104.   (or (assq 'gnus-show-threads minor-mode-alist)
  2105.       (setq minor-mode-alist
  2106.         (cons (list 'gnus-show-threads " Thread") minor-mode-alist)))
  2107.   (gnus-summary-set-mode-line)
  2108.   (use-local-map gnus-summary-mode-map)
  2109.   (buffer-flush-undo (current-buffer))
  2110.   (setq buffer-read-only t)        ;Disable modification
  2111.   (setq truncate-lines t)        ;Stop line folding
  2112.   (setq selective-display t)
  2113.   (setq selective-display-ellipses t)    ;Display `...'
  2114.   ;;(setq case-fold-search t)
  2115.   (run-hooks 'gnus-summary-mode-hook))
  2116.  
  2117. (defun gnus-summary-setup-buffer ()
  2118.   "Initialize Summary buffer."
  2119.   (if (get-buffer gnus-summary-buffer)
  2120.       (set-buffer gnus-summary-buffer)
  2121.     (set-buffer (get-buffer-create gnus-summary-buffer))
  2122.     (gnus-summary-mode)
  2123.     ))
  2124.  
  2125. (defun gnus-summary-read-group (group &optional show-all no-article)
  2126.   "Start reading news in newsgroup GROUP.
  2127. If optional 1st argument SHOW-ALL is non-nil, already read articles are
  2128. also listed.
  2129. If optional 2nd argument NO-ARTICLE is non-nil, no article is selected
  2130. initially."
  2131.   (message "Retrieving newsgroup: %s..." group)
  2132.   (if (gnus-select-newsgroup group show-all)
  2133.       (progn
  2134.     ;; Don't switch-to-buffer to prevent displaying old contents
  2135.     ;;  of the buffer until new subjects list is created.
  2136.     ;; Suggested by Juha Heinanen <jh@tut.fi>
  2137.     (gnus-summary-setup-buffer)
  2138.     ;; You can change the order of subjects in this hook.
  2139.     (run-hooks 'gnus-select-group-hook)
  2140.     (gnus-summary-prepare)
  2141.     ;; Function `gnus-apply-kill-file' must be called in this hook.
  2142.     (run-hooks 'gnus-apply-kill-hook)
  2143.     (if (zerop (buffer-size))
  2144.         ;; This newsgroup is empty.
  2145.         (progn
  2146.           (gnus-summary-catchup-and-exit nil t) ;Without confirmations.
  2147.           (message "No unread news"))
  2148.       ;; Hide conversation thread subtrees.  We cannot do this in
  2149.       ;; gnus-summary-prepare-hook since kill processing may not
  2150.       ;; work with hidden articles.
  2151.       (and gnus-show-threads
  2152.            gnus-thread-hide-subtree
  2153.            (gnus-summary-hide-all-threads))
  2154.       ;; Show first unread article if requested.
  2155.       (goto-char (point-min))
  2156.       (if (and (not no-article)
  2157.            gnus-auto-select-first
  2158.            (gnus-summary-first-unread-article))
  2159.           ;; Window is configured automatically.
  2160.           ;; Current buffer may be changed as a result of hook
  2161.           ;; evaluation, especially by gnus-summary-rmail-digest
  2162.           ;; command, so we should adjust cursor point carefully.
  2163.           (if (eq (current-buffer) (get-buffer gnus-summary-buffer))
  2164.           (progn
  2165.             ;; Adjust cursor point.
  2166.             (beginning-of-line)
  2167.             (search-forward ":" nil t)))
  2168.         (gnus-configure-windows 'summary)
  2169.         (pop-to-buffer gnus-summary-buffer)
  2170.         (gnus-summary-set-mode-line)
  2171.         ;; I sometime get confused with the old Article buffer.
  2172.         (if (get-buffer gnus-article-buffer)
  2173.         (if (get-buffer-window gnus-article-buffer)
  2174.             (save-excursion
  2175.               (set-buffer gnus-article-buffer)
  2176.               (let ((buffer-read-only nil))
  2177.             (erase-buffer)))
  2178.           (kill-buffer gnus-article-buffer)))
  2179.         ;; Adjust cursor point.
  2180.         (beginning-of-line)
  2181.         (search-forward ":" nil t))
  2182.       ))
  2183.     ;; Cannot select newsgroup GROUP.
  2184.     (if (gnus-gethash group gnus-active-hashtb)
  2185.     (progn
  2186.       ;; If NNTP is used, nntp_access file may not be installed
  2187.       ;; properly.  Otherwise, may be active file problem.
  2188.       (ding)
  2189.       (message
  2190.        (gnus-nntp-message
  2191.         (format "Cannot select %s.  May be security or active file problem." group)))
  2192.       (sit-for 0))
  2193.       ;; Check bogus newsgroups.
  2194.       ;; We must be in Group Mode buffer.
  2195.       (gnus-group-check-bogus-groups))
  2196.     ))
  2197.  
  2198. (defun gnus-summary-prepare ()
  2199.   "Prepare summary list of current newsgroup in Summary buffer."
  2200.   (let ((buffer-read-only nil))
  2201.     ;; Note: The next codes are not actually used because the user who
  2202.     ;; want it can define them in gnus-select-group-hook.
  2203.     ;; Print verbose messages if too many articles are selected.
  2204.     ;;    (and (numberp gnus-large-newsgroup)
  2205.     ;;       (> (length gnus-newsgroup-headers) gnus-large-newsgroup)
  2206.     ;;       (message "Preparing headers..."))
  2207.     (erase-buffer)
  2208.     (gnus-summary-prepare-threads
  2209.      (if gnus-show-threads
  2210.      (gnus-make-threads gnus-newsgroup-headers)
  2211.        gnus-newsgroup-headers) 0)
  2212.     ;; Erase header retrieval message.
  2213.     (message "")
  2214.     ;; Call hooks for modifying Summary buffer.
  2215.     ;; Suggested by sven@tde.LTH.Se (Sven Mattisson).
  2216.     (goto-char (point-min))
  2217.     (run-hooks 'gnus-summary-prepare-hook)
  2218.     ))
  2219.  
  2220. ;; Basic ideas by Paul Dworkin <paul@media-lab.media.mit.edu>
  2221. ;; Subject bug fix by jbw@bigbird.bu.edu (Joe Wells)
  2222.  
  2223. (defun gnus-summary-prepare-threads (threads level &optional parent-subject)
  2224.   "Prepare Summary buffer from THREADS and indentation LEVEL.
  2225. THREADS is a list of `(PARENT [(CHILD1 [(GRANDCHILD ...]...) ...]).'
  2226. Optional PARENT-SUBJECT specifies the subject of the parent."
  2227.   (let ((thread nil)
  2228.     (header nil)
  2229.     (number nil)
  2230.     (subject nil)
  2231.     (child-subject nil)
  2232.     (parent-subject (or parent-subject ""))
  2233.     ;; `M Indent NUM: [OPT] SUBJECT'
  2234.     (cntl (format "%%s %%s%%%dd: [%%s] %%s\n"
  2235.               (length (prin1-to-string gnus-newsgroup-end)))))
  2236.     (while threads
  2237.       (setq thread (car threads))
  2238.       (setq threads (cdr threads))
  2239.       ;; If thread is a cons, hierarchical threads is given.
  2240.       ;; Otherwise, thread itself is header.
  2241.       (if (consp thread)
  2242.       (setq header (car thread))
  2243.     (setq header thread))
  2244.       ;; Print valid header only.
  2245.       (if (vectorp header)        ;Depends on nntp.el.
  2246.       (progn
  2247.         (setq number (nntp-header-number header))
  2248.         (setq subject (nntp-header-subject header))
  2249.         (setq child-subject (gnus-simplify-subject subject 're-only))
  2250.         (insert
  2251.          (format cntl
  2252.              ;; Read or not.
  2253.              (cond ((memq number gnus-newsgroup-marked)  "-")
  2254.                ((memq number gnus-newsgroup-unreads) " ")
  2255.                (t "D"))
  2256.              ;; Thread level.
  2257.              (make-string (* level gnus-thread-indent-level) ? )
  2258.              ;; Article number.
  2259.              number
  2260.              ;; Optional headers.
  2261.              (or (and gnus-optional-headers
  2262.                   (funcall gnus-optional-headers header)) "")
  2263.              ;; Its subject string.
  2264.              (concat (if (or (zerop level)
  2265.                      (not gnus-thread-hide-subject)
  2266.                      ;; Subject is different from the parent.
  2267.                      (not (string-equal
  2268.                        parent-subject child-subject)))
  2269.                  nil
  2270.                    (make-string (window-width) ? ))
  2271.                  subject)
  2272.              ))
  2273.         ))
  2274.       ;; Print subthreads.
  2275.       (and (consp thread)
  2276.        (cdr thread)
  2277.        (gnus-summary-prepare-threads
  2278.         (cdr thread) (1+ level) child-subject))
  2279.       )))
  2280.  
  2281. ;;(defun gnus-summary-set-mode-line ()
  2282. ;;  "Set Summary mode line string."
  2283. ;;  ;; The value must be a string to escape %-constructs.
  2284. ;;  (let ((subject
  2285. ;;     (if gnus-current-headers
  2286. ;;         (nntp-header-subject gnus-current-headers) gnus-newsgroup-name)))
  2287. ;;    (setq mode-line-buffer-identification
  2288. ;;      (concat "GNUS: "
  2289. ;;          subject
  2290. ;;          ;; Enough spaces to pad subject to 17 positions.
  2291. ;;          (make-string (max 0 (- 17 (length subject))) ? ))))
  2292. ;;  (set-buffer-modified-p t))
  2293.  
  2294. ;; New implementation in gnus 3.14.3
  2295.  
  2296. (defun gnus-summary-set-mode-line ()
  2297.   "Set Summary mode line string.
  2298. If you don't like it, define your own gnus-summary-set-mode-line."
  2299.   (let ((unmarked
  2300.      (- (length gnus-newsgroup-unreads)
  2301.         (length (gnus-intersection
  2302.              gnus-newsgroup-unreads gnus-newsgroup-marked))))
  2303.     (unselected
  2304.      (- (length gnus-newsgroup-unselected)
  2305.         (length (gnus-intersection
  2306.              gnus-newsgroup-unselected gnus-newsgroup-marked)))))
  2307.     (setq mode-line-buffer-identification
  2308.       (list 17
  2309.         (format "GNUS: %s%s %s"
  2310.             gnus-newsgroup-name
  2311.             (if gnus-current-article
  2312.                 (format "/%d" gnus-current-article) "")
  2313.             ;; Basic ideas by tale@pawl.rpi.edu.
  2314.             (cond ((and (zerop unmarked)
  2315.                     (zerop unselected))
  2316.                    "")
  2317.                   ((zerop unselected)
  2318.                    (format "{%d more}" unmarked))
  2319.                   (t
  2320.                    (format "{%d(+%d) more}" unmarked unselected)))
  2321.             ))))
  2322.   (set-buffer-modified-p t))
  2323.  
  2324. ;; GNUS Summary mode command.
  2325.  
  2326. (defun gnus-summary-search-group (&optional backward)
  2327.   "Search for next unread newsgroup.
  2328. If optional argument BACKWARD is non-nil, search backward instead."
  2329.   (save-excursion
  2330.     (set-buffer gnus-group-buffer)
  2331.     (save-excursion
  2332.       ;; We don't want to alter current point of Group mode buffer.
  2333.       (if (gnus-group-search-forward backward nil)
  2334.       (gnus-group-group-name))
  2335.       )))
  2336.  
  2337. (defun gnus-summary-search-subject (backward unread subject)
  2338.   "Search for article forward.
  2339. If 1st argument BACKWARD is non-nil, search backward.
  2340. If 2nd argument UNREAD is non-nil, only unread article is selected.
  2341. If 3rd argument SUBJECT is non-nil, the article which has
  2342. the same subject will be searched for."
  2343.   (let ((func
  2344.      (if backward
  2345.          (function re-search-backward) (function re-search-forward)))
  2346.     (article nil)
  2347.     ;; We have to take care of hidden lines.
  2348.     (regexp 
  2349.      (format "^%s[ \t]+\\([0-9]+\\):.\\[[^]\r\n]*\\][ \t]+%s"
  2350.          ;;(if unread " " ".")
  2351.          (cond ((eq unread t) " ") (unread "[ ---]") (t "."))
  2352.          (if subject
  2353.              (concat "\\([Rr][Ee]:[ \t]+\\)*"
  2354.                  (regexp-quote (gnus-simplify-subject subject))
  2355.                  ;; Ignore words in parentheses.
  2356.                  "\\([ \t]*([^\r\n]*)\\)*[ \t]*\\(\r\\|$\\)")
  2357.            "")
  2358.          )))
  2359.     (if backward
  2360.     (beginning-of-line)
  2361.       (end-of-line))
  2362.     (if (funcall func regexp nil t)
  2363.     (setq article
  2364.           (string-to-int
  2365.            (buffer-substring (match-beginning 1) (match-end 1)))))
  2366.     ;; Adjust cursor point.
  2367.     (beginning-of-line)
  2368.     (search-forward ":" nil t)
  2369.     ;; This is the result.
  2370.     article
  2371.     ))
  2372.  
  2373. (defun gnus-summary-search-forward (&optional unread subject)
  2374.   "Search for article forward.
  2375. If 1st optional argument UNREAD is non-nil, only unread article is selected.
  2376. If 2nd optional argument SUBJECT is non-nil, the article which has
  2377. the same subject will be searched for."
  2378.   (gnus-summary-search-subject nil unread subject))
  2379.  
  2380. (defun gnus-summary-search-backward (&optional unread subject)
  2381.   "Search for article backward.
  2382. If 1st optional argument UNREAD is non-nil, only unread article is selected.
  2383. If 2nd optional argument SUBJECT is non-nil, the article which has
  2384. the same subject will be searched for."
  2385.   (gnus-summary-search-subject t unread subject))
  2386.  
  2387. (defun gnus-summary-article-number ()
  2388.   "Article number around point. If nothing, return current number."
  2389.   (save-excursion
  2390.     (beginning-of-line)
  2391.     (if (looking-at ".[ \t]+\\([0-9]+\\):")
  2392.     (string-to-int
  2393.      (buffer-substring (match-beginning 1) (match-end 1)))
  2394.       ;; If search fail, return current article number.
  2395.       gnus-current-article
  2396.       )))
  2397.  
  2398. (defun gnus-summary-subject-string ()
  2399.   "Return current subject string or nil if nothing."
  2400.   (save-excursion
  2401.     ;; It is possible to implement this function using
  2402.     ;;  `gnus-summary-article-number' and `gnus-newsgroup-headers'.
  2403.     (beginning-of-line)
  2404.     ;; We have to take care of hidden lines.
  2405.     (if (looking-at ".[ \t]+[0-9]+:.\\[[^]\r\n]*\\][ \t]+\\([^\r\n]*\\)[\r\n]")
  2406.     (buffer-substring (match-beginning 1) (match-end 1)))
  2407.     ))
  2408.  
  2409. (defun gnus-summary-goto-subject (article)
  2410.   "Move point to ARTICLE's subject."
  2411.   (interactive
  2412.    (list
  2413.     (string-to-int
  2414.      (completing-read "Article number: "
  2415.               (mapcar
  2416.                (function
  2417.             (lambda (headers)
  2418.               (list
  2419.                (int-to-string (nntp-header-number headers)))))
  2420.                gnus-newsgroup-headers)
  2421.               nil 'require-match))))
  2422.   (let ((current (point)))
  2423.     (goto-char (point-min))
  2424.     (or (and article (re-search-forward (format "^.[ \t]+%d:" article) nil t))
  2425.     (progn (goto-char current) nil))
  2426.     ))
  2427.  
  2428. (defun gnus-summary-recenter ()
  2429.   "Center point in Summary window."
  2430.   ;; Scroll window so as to cursor comes center of Summary window
  2431.   ;;  only when article is displayed.
  2432.   ;; Suggested by earle@mahendo.JPL.NASA.GOV (Greg Earle).
  2433.   ;; Recenter only when requested.
  2434.   ;; Subbested by popovich@park.cs.columbia.edu
  2435.   (and gnus-auto-center-summary
  2436.        (get-buffer-window gnus-article-buffer)
  2437.        (< (/ (- (window-height) 1) 2)
  2438.       (count-lines (point) (point-max)))
  2439.        (recenter (/ (- (window-height) 2) 2))))
  2440.  
  2441. ;; Walking around Group mode buffer.
  2442.  
  2443. (defun gnus-summary-jump-to-group (newsgroup)
  2444.   "Move point to NEWSGROUP in Group mode buffer."
  2445.   ;; Keep update point of Group mode buffer if visible.
  2446.   (if (eq (current-buffer)
  2447.       (get-buffer gnus-group-buffer))
  2448.       (save-window-excursion
  2449.     ;; Take care of tree window mode.
  2450.     (if (get-buffer-window gnus-group-buffer)
  2451.         (pop-to-buffer gnus-group-buffer))
  2452.     (gnus-group-jump-to-group newsgroup))
  2453.     (save-excursion
  2454.       ;; Take care of tree window mode.
  2455.       (if (get-buffer-window gnus-group-buffer)
  2456.       (pop-to-buffer gnus-group-buffer)
  2457.     (set-buffer gnus-group-buffer))
  2458.       (gnus-group-jump-to-group newsgroup))))
  2459.  
  2460. (defun gnus-summary-next-group (no-article)
  2461.   "Exit current newsgroup and then select next unread newsgroup.
  2462. If prefix argument NO-ARTICLE is non-nil, no article is selected initially."
  2463.   (interactive "P")
  2464.   ;; Make sure Group mode buffer point is on current newsgroup.
  2465.   (gnus-summary-jump-to-group gnus-newsgroup-name)
  2466.   (let ((group (gnus-summary-search-group)))
  2467.     (if (null group)
  2468.     (progn
  2469.       (message "Exiting %s..." gnus-newsgroup-name)  
  2470.       (gnus-summary-exit)
  2471.       (message ""))
  2472.       (message "Selecting %s..." group)
  2473.       (gnus-summary-exit t)        ;Exit Summary mode temporary.
  2474.       ;; We are now in Group mode buffer.
  2475.       ;; Make sure Group mode buffer point is on GROUP.
  2476.       (gnus-summary-jump-to-group group)
  2477.       (gnus-summary-read-group group nil no-article)
  2478.       (or (eq (current-buffer)
  2479.           (get-buffer gnus-summary-buffer))
  2480.       (eq gnus-auto-select-next t)
  2481.       ;; Expected newsgroup has nothing to read since the articles
  2482.       ;; are marked as read by cross-referencing. So, try next
  2483.       ;; newsgroup. (Make sure we are in Group mode buffer now.)
  2484.       (and (eq (current-buffer)
  2485.            (get-buffer gnus-group-buffer))
  2486.            (gnus-group-group-name)
  2487.            (gnus-summary-read-group
  2488.         (gnus-group-group-name) nil no-article))
  2489.       )
  2490.       )))
  2491.  
  2492. (defun gnus-summary-prev-group (no-article)
  2493.   "Exit current newsgroup and then select previous unread newsgroup.
  2494. If prefix argument NO-ARTICLE is non-nil, no article is selected initially."
  2495.   (interactive "P")
  2496.   ;; Make sure Group mode buffer point is on current newsgroup.
  2497.   (gnus-summary-jump-to-group gnus-newsgroup-name)
  2498.   (let ((group (gnus-summary-search-group t)))
  2499.     (if (null group)
  2500.     (progn
  2501.       (message "Exiting %s..." gnus-newsgroup-name)  
  2502.       (gnus-summary-exit)
  2503.       (message ""))
  2504.       (message "Selecting %s..." group)
  2505.       (gnus-summary-exit t)        ;Exit Summary mode temporary.
  2506.       ;; We are now in Group mode buffer.
  2507.       ;; We have to adjust point of Group mode buffer because current
  2508.       ;; point is moved to next unread newsgroup by exiting.
  2509.       (gnus-summary-jump-to-group group)
  2510.       (gnus-summary-read-group group nil no-article)
  2511.       (or (eq (current-buffer)
  2512.           (get-buffer gnus-summary-buffer))
  2513.       (eq gnus-auto-select-next t)
  2514.       ;; Expected newsgroup has nothing to read since the articles
  2515.       ;; are marked as read by cross-referencing. So, try next
  2516.       ;; newsgroup. (Make sure we are in Group mode buffer now.)
  2517.       (and (eq (current-buffer)
  2518.            (get-buffer gnus-group-buffer))
  2519.            (gnus-summary-search-group t)
  2520.            (gnus-summary-read-group
  2521.         (gnus-summary-search-group t) nil no-article))
  2522.       )
  2523.       )))
  2524.  
  2525. ;; Walking around summary lines.
  2526.  
  2527. (defun gnus-summary-next-subject (n &optional unread)
  2528.   "Go to next N'th summary line.
  2529. If optional argument UNREAD is non-nil, only unread article is selected."
  2530.   (interactive "p")
  2531.   (while (and (> n 1)
  2532.           (gnus-summary-search-forward unread))
  2533.     (setq n (1- n)))
  2534.   (cond ((gnus-summary-search-forward unread)
  2535.      (gnus-summary-recenter))
  2536.     (unread
  2537.      (message "No more unread articles"))
  2538.     (t
  2539.      (message "No more articles"))
  2540.     ))
  2541.  
  2542. (defun gnus-summary-next-unread-subject (n)
  2543.   "Go to next N'th unread summary line."
  2544.   (interactive "p")
  2545.   (gnus-summary-next-subject n t))
  2546.  
  2547. (defun gnus-summary-prev-subject (n &optional unread)
  2548.   "Go to previous N'th summary line.
  2549. If optional argument UNREAD is non-nil, only unread article is selected."
  2550.   (interactive "p")
  2551.   (while (and (> n 1)
  2552.           (gnus-summary-search-backward unread))
  2553.     (setq n (1- n)))
  2554.   (cond ((gnus-summary-search-backward unread)
  2555.      (gnus-summary-recenter))
  2556.     (unread
  2557.      (message "No more unread articles"))
  2558.     (t
  2559.      (message "No more articles"))
  2560.     ))
  2561.  
  2562. (defun gnus-summary-prev-unread-subject (n)
  2563.   "Go to previous N'th unread summary line."
  2564.   (interactive "p")
  2565.   (gnus-summary-prev-subject n t))
  2566.  
  2567. ;; Walking around summary lines with displaying articles.
  2568.  
  2569. (defun gnus-summary-expand-window ()
  2570.   "Expand Summary window to show headers full window."
  2571.   (interactive)
  2572.   (gnus-configure-windows 'summary)
  2573.   (pop-to-buffer gnus-summary-buffer))
  2574.  
  2575. (defun gnus-summary-display-article (article &optional all-header)
  2576.   "Display ARTICLE in Article buffer."
  2577.   (if (null article)
  2578.       nil
  2579.     (gnus-configure-windows 'article)
  2580.     (pop-to-buffer gnus-summary-buffer)
  2581.     (gnus-article-prepare article all-header)
  2582.     (gnus-summary-recenter)
  2583.     (gnus-summary-set-mode-line)
  2584.     (run-hooks 'gnus-select-article-hook)
  2585.     ;; Successfully display article.
  2586.     t
  2587.     ))
  2588.  
  2589. (defun gnus-summary-select-article (&optional all-headers force)
  2590.   "Select the current article.
  2591. Optional first argument ALL-HEADERS is non-nil, show all header fields.
  2592. Optional second argument FORCE is nil, the article is only selected
  2593. again when current header does not match with ALL-HEADERS option."
  2594.   (let ((article (gnus-summary-article-number))
  2595.     (all-headers (not (not all-headers)))) ;Must be T or NIL.
  2596.     (if (or (null gnus-current-article)
  2597.         (/= article gnus-current-article)
  2598.         (and force (not (eq all-headers gnus-have-all-headers))))
  2599.     ;; The selected one is different from that of the current article.
  2600.     (gnus-summary-display-article article all-headers)
  2601.       (gnus-configure-windows 'article)
  2602.       (pop-to-buffer gnus-summary-buffer))
  2603.     ))
  2604.  
  2605. (defun gnus-summary-set-current-mark (&optional current-mark)
  2606.   "Put `+' at the current article.
  2607. Optional argument specifies CURRENT-MARK instead of `+'."
  2608.   (save-excursion
  2609.     (set-buffer gnus-summary-buffer)
  2610.     (let ((buffer-read-only nil))
  2611.       (goto-char (point-min))
  2612.       ;; First of all clear mark at last article.
  2613.       (if (re-search-forward "^.[ \t]+[0-9]+:[^ \t]" nil t)
  2614.       (progn
  2615.         (delete-char -1)
  2616.         (insert " ")
  2617.         (goto-char (point-min))))
  2618.       (if (re-search-forward (format "^.[ \t]+%d:" gnus-current-article) nil t)
  2619.       (progn
  2620.         (delete-char 1)
  2621.         (insert (or current-mark "+"))))
  2622.       )))
  2623.  
  2624. ;;(defun gnus-summary-next-article (unread &optional subject)
  2625. ;;  "Select article after current one.
  2626. ;;If argument UNREAD is non-nil, only unread article is selected."
  2627. ;;  (interactive "P")
  2628. ;;  (cond ((gnus-summary-display-article
  2629. ;;      (gnus-summary-search-forward unread subject)))
  2630. ;;    (unread
  2631. ;;     (message "No more unread articles"))
  2632. ;;    (t
  2633. ;;     (message "No more articles"))
  2634. ;;    ))
  2635.  
  2636. (defun gnus-summary-next-article (unread &optional subject)
  2637.   "Select article after current one.
  2638. If argument UNREAD is non-nil, only unread article is selected."
  2639.   (interactive "P")
  2640.   (let ((header nil))
  2641.     (cond ((gnus-summary-display-article
  2642.         (gnus-summary-search-forward unread subject)))
  2643.       ((and subject
  2644.         gnus-auto-select-same
  2645.         (gnus-set-difference gnus-newsgroup-unreads
  2646.                      gnus-newsgroup-marked)
  2647.         (memq this-command
  2648.               '(gnus-summary-next-unread-article
  2649.             gnus-summary-next-page
  2650.             gnus-summary-kill-same-subject-and-select
  2651.             ;;gnus-summary-next-article
  2652.             ;;gnus-summary-next-same-subject
  2653.             ;;gnus-summary-next-unread-same-subject
  2654.             )))
  2655.        ;; Wrap article pointer if there are unread articles.
  2656.        ;; Hook function, such as gnus-summary-rmail-digest, may
  2657.        ;; change current buffer, so need check.
  2658.        (let ((buffer (current-buffer))
  2659.          (last-point (point)))
  2660.          ;; No more articles with same subject, so jump to the first
  2661.          ;; unread article.
  2662.          (gnus-summary-first-unread-article)
  2663.          ;;(and (eq buffer (current-buffer))
  2664.          ;;    (= (point) last-point)
  2665.          ;;    ;; Ignore given SUBJECT, and try again.
  2666.          ;;    (gnus-summary-next-article unread nil))
  2667.          (and (eq buffer (current-buffer))
  2668.           (< (point) last-point)
  2669.           (message "Wrapped"))
  2670.          ))
  2671.       ((and gnus-auto-extend-newsgroup
  2672.         (not unread)        ;Not unread only
  2673.         (not subject)        ;Only if subject is not specified.
  2674.         (setq header (gnus-more-header-forward)))
  2675.        ;; Extend to next article if possible.
  2676.        ;; Basic ideas by himacdonald@watdragon.waterloo.edu
  2677.        (gnus-extend-newsgroup header nil)
  2678.        ;; Threads feature must be turned off.
  2679.        (let ((buffer-read-only nil))
  2680.          (goto-char (point-max))
  2681.          (gnus-summary-prepare-threads (list header) 0))
  2682.        (gnus-summary-goto-article gnus-newsgroup-end))
  2683.       (t
  2684.        ;; Select next newsgroup automatically if requested.
  2685.        (let ((cmd (string-to-char (this-command-keys)))
  2686.          (group (gnus-summary-search-group))
  2687.          (auto-select
  2688.           (and gnus-auto-select-next
  2689.                ;;(null (gnus-set-difference gnus-newsgroup-unreads
  2690.                ;;                gnus-newsgroup-marked))
  2691.                (memq this-command
  2692.                  '(gnus-summary-next-unread-article
  2693.                    gnus-summary-next-article
  2694.                    gnus-summary-next-page
  2695.                    gnus-summary-next-same-subject
  2696.                    gnus-summary-next-unread-same-subject
  2697.                    gnus-summary-kill-same-subject
  2698.                    gnus-summary-kill-same-subject-and-select
  2699.                    ))
  2700.                ;; Ignore characters typed ahead.
  2701.                (not (input-pending-p))
  2702.                )))
  2703.          (message "No more%s articles%s"
  2704.               (if unread " unread" "")
  2705.               (if (and auto-select
  2706.                    (not (eq gnus-auto-select-next 'quietly)))
  2707.               (if group
  2708.                   (format " (Type %s for %s [%d])"
  2709.                       (key-description (char-to-string cmd))
  2710.                       group
  2711.                       (nth 1 (gnus-gethash group
  2712.                                gnus-unread-hashtb)))
  2713.                 (format " (Type %s to exit %s)"
  2714.                     (key-description (char-to-string cmd))
  2715.                     gnus-newsgroup-name
  2716.                     ))
  2717.             ""))
  2718.          ;; Select next unread newsgroup automagically.
  2719.          (cond ((and auto-select
  2720.              (eq gnus-auto-select-next 'quietly))
  2721.             ;; Select quietly.
  2722.             (gnus-summary-next-group nil))
  2723.            (auto-select
  2724.             ;; Confirm auto selection.
  2725.             (let ((char (read-char)))
  2726.               (if (= char cmd)
  2727.               (gnus-summary-next-group nil)
  2728.             (setq unread-command-char char))))
  2729.            )
  2730.          ))
  2731.       )))
  2732.  
  2733. (defun gnus-summary-next-unread-article ()
  2734.   "Select unread article after current one."
  2735.   (interactive)
  2736.   (gnus-summary-next-article t (and gnus-auto-select-same
  2737.                     (gnus-summary-subject-string))))
  2738.  
  2739. (defun gnus-summary-prev-article (unread &optional subject)
  2740.   "Select article before current one.
  2741. If argument UNREAD is non-nil, only unread article is selected."
  2742.   (interactive "P")
  2743.   (let ((header nil))
  2744.     (cond ((gnus-summary-display-article
  2745.         (gnus-summary-search-backward unread subject)))
  2746.       ((and subject
  2747.         gnus-auto-select-same
  2748.         (gnus-set-difference gnus-newsgroup-unreads
  2749.                      gnus-newsgroup-marked)
  2750.         (memq this-command
  2751.               '(gnus-summary-prev-unread-article
  2752.             ;;gnus-summary-prev-page
  2753.             ;;gnus-summary-prev-article
  2754.             ;;gnus-summary-prev-same-subject
  2755.             ;;gnus-summary-prev-unread-same-subject
  2756.             )))
  2757.        ;; Ignore given SUBJECT, and try again.
  2758.        (gnus-summary-prev-article unread nil))
  2759.       (unread
  2760.        (message "No more unread articles"))
  2761.       ((and gnus-auto-extend-newsgroup
  2762.         (not subject)        ;Only if subject is not specified.
  2763.         (setq header (gnus-more-header-backward)))
  2764.        ;; Extend to previous article if possible.
  2765.        ;; Basic ideas by himacdonald@watdragon.waterloo.edu
  2766.        (gnus-extend-newsgroup header t)
  2767.        (let ((buffer-read-only nil))
  2768.          (goto-char (point-min))
  2769.          (gnus-summary-prepare-threads (list header) 0))
  2770.        (gnus-summary-goto-article gnus-newsgroup-begin))
  2771.       (t
  2772.        (message "No more articles"))
  2773.       )))
  2774.  
  2775. (defun gnus-summary-prev-unread-article ()
  2776.   "Select unred article before current one."
  2777.   (interactive)
  2778.   (gnus-summary-prev-article t (and gnus-auto-select-same
  2779.                     (gnus-summary-subject-string))))
  2780.  
  2781. (defun gnus-summary-next-page (lines)
  2782.   "Show next page of selected article.
  2783. If end of article, select next article.
  2784. Argument LINES specifies lines to be scrolled up."
  2785.   (interactive "P")
  2786.   (let ((article (gnus-summary-article-number))
  2787.     (endp nil))
  2788.     (if (or (null gnus-current-article)
  2789.         (/= article gnus-current-article))
  2790.     ;; Selected subject is different from current article's.
  2791.     (gnus-summary-display-article article)
  2792.       (gnus-configure-windows 'article)
  2793.       (pop-to-buffer gnus-summary-buffer)
  2794.       (gnus-eval-in-buffer-window gnus-article-buffer
  2795.     (setq endp (gnus-article-next-page lines)))
  2796.       (cond ((and endp lines)
  2797.          (message "End of message"))
  2798.         ((and endp (null lines))
  2799.          (gnus-summary-next-unread-article)))
  2800.       )))
  2801.  
  2802. (defun gnus-summary-prev-page (lines)
  2803.   "Show previous page of selected article.
  2804. Argument LINES specifies lines to be scrolled down."
  2805.   (interactive "P")
  2806.   (let ((article (gnus-summary-article-number)))
  2807.     (if (or (null gnus-current-article)
  2808.         (/= article gnus-current-article))
  2809.     ;; Selected subject is different from current article's.
  2810.     (gnus-summary-display-article article)
  2811.       (gnus-configure-windows 'article)
  2812.       (pop-to-buffer gnus-summary-buffer)
  2813.       (gnus-eval-in-buffer-window gnus-article-buffer
  2814.     (gnus-article-prev-page lines))
  2815.       )))
  2816.  
  2817. (defun gnus-summary-scroll-up (lines)
  2818.   "Scroll up (or down) one line current article.
  2819. Argument LINES specifies lines to be scrolled up (or down if negative)."
  2820.   (interactive "p")
  2821.   (gnus-summary-select-article)
  2822.   (gnus-eval-in-buffer-window gnus-article-buffer
  2823.     (cond ((> lines 0)
  2824.        (if (gnus-article-next-page lines)
  2825.            (message "End of message")))
  2826.       ((< lines 0)
  2827.        (gnus-article-prev-page (- 0 lines))))
  2828.     ))
  2829.  
  2830. (defun gnus-summary-next-same-subject ()
  2831.   "Select next article which has the same subject as current one."
  2832.   (interactive)
  2833.   (gnus-summary-next-article nil (gnus-summary-subject-string)))
  2834.  
  2835. (defun gnus-summary-prev-same-subject ()
  2836.   "Select previous article which has the same subject as current one."
  2837.   (interactive)
  2838.   (gnus-summary-prev-article nil (gnus-summary-subject-string)))
  2839.  
  2840. (defun gnus-summary-next-unread-same-subject ()
  2841.   "Select next unread article which has the same subject as current one."
  2842.   (interactive)
  2843.   (gnus-summary-next-article t (gnus-summary-subject-string)))
  2844.  
  2845. (defun gnus-summary-prev-unread-same-subject ()
  2846.   "Select previous unread article which has the same subject as current one."
  2847.   (interactive)
  2848.   (gnus-summary-prev-article t (gnus-summary-subject-string)))
  2849.  
  2850. (defun gnus-summary-refer-parent-article (child)
  2851.   "Refer parent article of current article.
  2852. If a prefix argument CHILD is non-nil, go back to the child article
  2853. using internally maintained articles history.
  2854. NOTE: This command may not work with nnspool.el."
  2855.   (interactive "P")
  2856.   (gnus-summary-select-article t t)    ;Request all headers.
  2857.   (let ((referenced-id nil))        ;Message-id of parent or child article.
  2858.     (if child
  2859.     ;; Go back to child article using history.
  2860.     (gnus-summary-refer-article nil)
  2861.       (gnus-eval-in-buffer-window gnus-article-buffer
  2862.     ;; Look for parent Message-ID.
  2863.     ;; We cannot use gnus-current-headers to get references
  2864.     ;; because we may be looking at parent or referred article.
  2865.     (let ((references (gnus-fetch-field "References")))
  2866.       ;; Get the last message-id in the references.
  2867.       (and references
  2868.            (string-match "\\(<[^<>]+>\\)[^>]*\\'" references)
  2869.            (setq referenced-id
  2870.              (substring references
  2871.                 (match-beginning 1) (match-end 1))))
  2872.       ))
  2873.       (if (stringp referenced-id)
  2874.       (gnus-summary-refer-article referenced-id)
  2875.     (error "No more parents"))
  2876.       )))
  2877.  
  2878. (defun gnus-summary-refer-article (message-id)
  2879.   "Refer article specified by MESSAGE-ID.
  2880. If the MESSAGE-ID is nil or an empty string, Message-ID is poped from
  2881. internally maintained articles history.
  2882. NOTE: This command may not work with nnspool.el nor mhspool.el."
  2883.   (interactive "sMessage-ID: ")
  2884.   ;; Make sure that this command depends on the fact that article
  2885.   ;; related information is not updated when an article is retrieved
  2886.   ;; by Message-ID.
  2887.   (gnus-summary-select-article t t)    ;Request all headers.
  2888.   (if (and (stringp message-id)
  2889.        (> (length message-id) 0))
  2890.       (gnus-eval-in-buffer-window gnus-article-buffer
  2891.     ;; Construct the correct Message-ID if necessary.
  2892.     ;; Suggested by tale@pawl.rpi.edu.
  2893.     (or (string-match "^<" message-id)
  2894.         (setq message-id (concat "<" message-id)))
  2895.     (or (string-match ">$" message-id)
  2896.         (setq message-id (concat message-id ">")))
  2897.     ;; Push current message-id on history.
  2898.     ;; We cannot use gnus-current-headers to get current
  2899.     ;; message-id because we may be looking at parent or referred
  2900.     ;; article.
  2901.     (let ((current (gnus-fetch-field "Message-ID")))
  2902.       (or (equal current message-id) ;Nothing to do.
  2903.           (equal current (car gnus-current-history))
  2904.           (setq gnus-current-history
  2905.             (cons current gnus-current-history)))
  2906.       ))
  2907.     ;; Pop message-id from history.
  2908.     (setq message-id (car gnus-current-history))
  2909.     (setq gnus-current-history (cdr gnus-current-history)))
  2910.   (if (stringp message-id)
  2911.       ;; Retrieve article by message-id.  This may not work with
  2912.       ;; nnspool nor mhspool.
  2913.       (gnus-article-prepare message-id t)
  2914.     (error "No such references"))
  2915.   )
  2916.  
  2917. (defun gnus-summary-next-digest (nth)
  2918.   "Move to head of NTH next digested message."
  2919.   (interactive "p")
  2920.   (gnus-summary-select-article)
  2921.   (gnus-eval-in-buffer-window gnus-article-buffer
  2922.     (gnus-article-next-digest (or nth 1))
  2923.     ))
  2924.  
  2925. (defun gnus-summary-prev-digest (nth)
  2926.   "Move to head of NTH previous digested message."
  2927.   (interactive "p")
  2928.   (gnus-summary-select-article)
  2929.   (gnus-eval-in-buffer-window gnus-article-buffer
  2930.     (gnus-article-prev-digest (or nth 1))
  2931.     ))
  2932.  
  2933. (defun gnus-summary-first-unread-article ()
  2934.   "Select first unread article. Return non-nil if successfully selected."
  2935.   (interactive)
  2936.   (let ((begin (point)))
  2937.     (goto-char (point-min))
  2938.     (if (re-search-forward "^ [ \t]+[0-9]+:" nil t)
  2939.     (gnus-summary-display-article (gnus-summary-article-number))
  2940.       ;; If there is no unread articles, stay there.
  2941.       (goto-char begin)
  2942.       ;;(gnus-summary-display-article (gnus-summary-article-number))
  2943.       (message "No more unread articles")
  2944.       nil
  2945.       )
  2946.     ))
  2947.  
  2948. (defun gnus-summary-isearch-article ()
  2949.   "Do incremental search forward on current article."
  2950.   (interactive)
  2951.   (gnus-summary-select-article)
  2952.   (gnus-eval-in-buffer-window gnus-article-buffer
  2953.                   (isearch-forward)))
  2954.  
  2955. (defun gnus-summary-search-article-forward (regexp)
  2956.   "Search for an article containing REGEXP forward.
  2957. gnus-select-article-hook is not called during the search."
  2958.   (interactive
  2959.    (list (read-string
  2960.       (concat "Search forward (regexp): "
  2961.           (if gnus-last-search-regexp
  2962.               (concat "(default " gnus-last-search-regexp ") "))))))
  2963.   (if (string-equal regexp "")
  2964.       (setq regexp (or gnus-last-search-regexp ""))
  2965.     (setq gnus-last-search-regexp regexp))
  2966.   (if (gnus-summary-search-article regexp nil)
  2967.       (gnus-eval-in-buffer-window gnus-article-buffer
  2968.     (recenter 0)
  2969.     ;;(sit-for 1)
  2970.     )
  2971.     (error "Search failed: \"%s\"" regexp)
  2972.     ))
  2973.  
  2974. (defun gnus-summary-search-article-backward (regexp)
  2975.   "Search for an article containing REGEXP backward.
  2976. gnus-select-article-hook is not called during the search."
  2977.   (interactive
  2978.    (list (read-string
  2979.       (concat "Search backward (regexp): "
  2980.           (if gnus-last-search-regexp
  2981.               (concat "(default " gnus-last-search-regexp ") "))))))
  2982.   (if (string-equal regexp "")
  2983.       (setq regexp (or gnus-last-search-regexp ""))
  2984.     (setq gnus-last-search-regexp regexp))
  2985.   (if (gnus-summary-search-article regexp t)
  2986.       (gnus-eval-in-buffer-window gnus-article-buffer
  2987.     (recenter 0)
  2988.     ;;(sit-for 1)
  2989.     )
  2990.     (error "Search failed: \"%s\"" regexp)
  2991.     ))
  2992.  
  2993. (defun gnus-summary-search-article (regexp &optional backward)
  2994.   "Search for an article containing REGEXP.
  2995. Optional argument BACKWARD means do search for backward.
  2996. gnus-select-article-hook is not called during the search."
  2997.   (let ((gnus-select-article-hook nil)    ;Disable hook.
  2998.     (gnus-mark-article-hook nil)    ;Inhibit marking as read.
  2999.     (re-search
  3000.      (if backward
  3001.          (function re-search-backward) (function re-search-forward)))
  3002.     (found nil)
  3003.     (last nil))
  3004.     ;; Hidden thread subtrees must be searched for ,too.
  3005.     (gnus-summary-show-all-threads)
  3006.     ;; First of all, search current article.
  3007.     ;; We don't want to read article again from NNTP server nor reset
  3008.     ;; current point.
  3009.     (gnus-summary-select-article)
  3010.     (message "Searching article: %d..." gnus-current-article)
  3011.     (setq last gnus-current-article)
  3012.     (gnus-eval-in-buffer-window gnus-article-buffer
  3013.       (save-restriction
  3014.     (widen)
  3015.     ;; Begin search from current point.
  3016.     (setq found (funcall re-search regexp nil t))))
  3017.     ;; Then search next articles.
  3018.     (while (and (not found)
  3019.         (gnus-summary-display-article 
  3020.          (gnus-summary-search-subject backward nil nil)))
  3021.       (message "Searching article: %d..." gnus-current-article)
  3022.       (gnus-eval-in-buffer-window gnus-article-buffer
  3023.     (save-restriction
  3024.       (widen)
  3025.       (goto-char (if backward (point-max) (point-min)))
  3026.       (setq found (funcall re-search regexp nil t)))
  3027.     ))
  3028.     (message "")
  3029.     ;; Adjust article pointer.
  3030.     (or (eq last gnus-current-article)
  3031.     (setq gnus-last-article last))
  3032.     ;; Return T if found such article.
  3033.     found
  3034.     ))
  3035.  
  3036. (defun gnus-summary-execute-command (field regexp command &optional backward)
  3037.   "If FIELD of article header matches REGEXP, execute a COMMAND string.
  3038. If FIELD is an empty string (or nil), entire article body is searched for.
  3039. If optional (prefix) argument BACKWARD is non-nil, do backward instead."
  3040.   (interactive
  3041.    (list (let ((completion-ignore-case t))
  3042.        (completing-read "Field name: "
  3043.                 '(("Number")("Subject")("From")
  3044.                   ("Lines")("Date")("Id")
  3045.                   ("Xref")("References"))
  3046.                 nil 'require-match))
  3047.      (read-string "Regexp: ")
  3048.      (read-key-sequence "Command: ")
  3049.      current-prefix-arg))
  3050.   ;; Hidden thread subtrees must be searched for ,too.
  3051.   (gnus-summary-show-all-threads)
  3052.   ;; We don't want to change current point nor window configuration.
  3053.   (save-excursion
  3054.     (save-window-excursion
  3055.       (message "Executing %s..." (key-description command))
  3056.       ;; We'd like to execute COMMAND interactively so as to give arguments.
  3057.       (gnus-execute field regexp
  3058.             (` (lambda ()
  3059.              (call-interactively '(, (key-binding command)))))
  3060.             backward)
  3061.       (message "Executing %s... done" (key-description command)))))
  3062.  
  3063. (defun gnus-summary-beginning-of-article ()
  3064.   "Go to beginning of article body"
  3065.   (interactive)
  3066.   (gnus-summary-select-article)
  3067.   (gnus-eval-in-buffer-window gnus-article-buffer
  3068.     (widen)
  3069.     (beginning-of-buffer)
  3070.     (if gnus-break-pages
  3071.     (gnus-narrow-to-page))
  3072.     ))
  3073.  
  3074. (defun gnus-summary-end-of-article ()
  3075.   "Go to end of article body"
  3076.   (interactive)
  3077.   (gnus-summary-select-article)
  3078.   (gnus-eval-in-buffer-window gnus-article-buffer
  3079.     (widen)
  3080.     (end-of-buffer)
  3081.     (if gnus-break-pages
  3082.     (gnus-narrow-to-page))
  3083.     ))
  3084.  
  3085. (defun gnus-summary-goto-article (article &optional all-headers)
  3086.   "Read ARTICLE if exists.
  3087. Optional argument ALL-HEADERS means all headers are shown."
  3088.   (interactive
  3089.    (list
  3090.     (string-to-int
  3091.      (completing-read "Article number: "
  3092.               (mapcar
  3093.                (function
  3094.             (lambda (headers)
  3095.               (list
  3096.                (int-to-string (nntp-header-number headers)))))
  3097.                gnus-newsgroup-headers)
  3098.               nil 'require-match))))
  3099.   (if (gnus-summary-goto-subject article)
  3100.       (gnus-summary-display-article article all-headers)))
  3101.  
  3102. (defun gnus-summary-goto-last-article ()
  3103.   "Go to last subject line."
  3104.   (interactive)
  3105.   (if gnus-last-article
  3106.       (gnus-summary-goto-article gnus-last-article)))
  3107.  
  3108. (defun gnus-summary-show-article ()
  3109.   "Force to show current article."
  3110.   (interactive)
  3111.   ;; The following is a trick to force to read the current article again.
  3112.   (setq gnus-have-all-headers (not gnus-have-all-headers))
  3113.   (gnus-summary-select-article (not gnus-have-all-headers) t))
  3114.  
  3115. (defun gnus-summary-toggle-header (arg)
  3116.   "Show original header if pruned header currently shown, or vice versa.
  3117. With arg, show original header iff arg is positive."
  3118.   (interactive "P")
  3119.   ;; Variable gnus-show-all-headers must be NIL to toggle really.
  3120.   (let ((gnus-show-all-headers nil)
  3121.     (all-headers
  3122.      (if (null arg) (not gnus-have-all-headers)
  3123.        (> (prefix-numeric-value arg) 0))))
  3124.     (gnus-summary-select-article all-headers t)))
  3125.  
  3126. (defun gnus-summary-show-all-headers ()
  3127.   "Show original article header."
  3128.   (interactive)
  3129.   (gnus-summary-select-article t t))
  3130.  
  3131. (defun gnus-summary-toggle-mime (arg)
  3132.   "Toggle MIME processing.
  3133. With arg, turn MIME processing on iff arg is positive."
  3134.   (interactive "P")
  3135.   (setq gnus-show-mime
  3136.     (if (null arg) (not gnus-show-mime)
  3137.       (> (prefix-numeric-value arg) 0)))
  3138.   ;; The following is a trick to force to read the current article again.
  3139.   (setq gnus-have-all-headers (not gnus-have-all-headers))
  3140.   (gnus-summary-select-article (not gnus-have-all-headers) t))
  3141.  
  3142. (defun gnus-summary-stop-page-breaking ()
  3143.   "Stop page breaking by linefeed temporary (Widen article buffer)."
  3144.   (interactive)
  3145.   (gnus-summary-select-article)
  3146.   (gnus-eval-in-buffer-window gnus-article-buffer
  3147.     (widen)
  3148.     ))
  3149.  
  3150. (defun gnus-summary-kill-same-subject-and-select (unmark)
  3151.   "Mark articles which has the same subject as read, and then select next.
  3152. If argument UNMARK is positive, remove any kinds of marks.
  3153. If argument UNMARK is negative, mark articles as unread instead."
  3154.   (interactive "P")
  3155.   (if unmark
  3156.       (setq unmark (prefix-numeric-value unmark)))
  3157.   (let ((count
  3158.      (gnus-summary-mark-same-subject
  3159.       (gnus-summary-subject-string) unmark)))
  3160.     ;; Select next unread article. If auto-select-same mode, should
  3161.     ;; select the first unread article.
  3162.     (gnus-summary-next-article t (and gnus-auto-select-same
  3163.                       (gnus-summary-subject-string)))
  3164.     (message "%d articles are marked as %s"
  3165.          count (if unmark "unread" "read"))
  3166.     ))
  3167.  
  3168. (defun gnus-summary-kill-same-subject (unmark)
  3169.   "Mark articles which has the same subject as read. 
  3170. If argument UNMARK is positive, remove any kinds of marks.
  3171. If argument UNMARK is negative, mark articles as unread instead."
  3172.   (interactive "P")
  3173.   (if unmark
  3174.       (setq unmark (prefix-numeric-value unmark)))
  3175.   (let ((count
  3176.      (gnus-summary-mark-same-subject
  3177.       (gnus-summary-subject-string) unmark)))
  3178.     ;; If marked as read, go to next unread subject.
  3179.     (if (null unmark)
  3180.     ;; Go to next unread subject.
  3181.     (gnus-summary-next-subject 1 t))
  3182.     (message "%d articles are marked as %s"
  3183.          count (if unmark "unread" "read"))
  3184.     ))
  3185.  
  3186. (defun gnus-summary-mark-same-subject (subject &optional unmark)
  3187.   "Mark articles with same SUBJECT as read, and return marked number.
  3188. If optional argument UNMARK is positive, remove any kinds of marks.
  3189. If optional argument UNMARK is negative, mark articles as unread instead."
  3190.   (let ((count 1))
  3191.     (save-excursion
  3192.       (cond ((null unmark)
  3193.          (gnus-summary-mark-as-read nil "K"))
  3194.         ((> unmark 0)
  3195.          (gnus-summary-mark-as-unread nil t))
  3196.         (t
  3197.          (gnus-summary-mark-as-unread)))
  3198.       (while (and subject
  3199.           (gnus-summary-search-forward nil subject))
  3200.     (cond ((null unmark)
  3201.            (gnus-summary-mark-as-read nil "K"))
  3202.           ((> unmark 0)
  3203.            (gnus-summary-mark-as-unread nil t))
  3204.           (t
  3205.            (gnus-summary-mark-as-unread)))
  3206.     (setq count (1+ count))
  3207.     ))
  3208.     ;; Hide killed thread subtrees.  Does not work properly always.
  3209.     ;;(and (null unmark)
  3210.     ;;     gnus-thread-hide-killed
  3211.     ;;       (gnus-summary-hide-thread))
  3212.     ;; Return number of articles marked as read.
  3213.     count
  3214.     ))
  3215.  
  3216. (defun gnus-summary-mark-as-unread-forward (count)
  3217.   "Mark current article as unread, and then go forward.
  3218. Argument COUNT specifies number of articles marked as unread."
  3219.   (interactive "p")
  3220.   (while (> count 0)
  3221.     (gnus-summary-mark-as-unread nil nil)
  3222.     (gnus-summary-next-subject 1 nil)
  3223.     (setq count (1- count))))
  3224.  
  3225. (defun gnus-summary-mark-as-unread-backward (count)
  3226.   "Mark current article as unread, and then go backward.
  3227. Argument COUNT specifies number of articles marked as unread."
  3228.   (interactive "p")
  3229.   (while (> count 0)
  3230.     (gnus-summary-mark-as-unread nil nil)
  3231.     (gnus-summary-prev-subject 1 nil)
  3232.     (setq count (1- count))))
  3233.  
  3234. (defun gnus-summary-mark-as-unread (&optional article clear-mark)
  3235.   "Mark current article as unread.
  3236. Optional 1st argument ARTICLE specifies article number to be marked as unread.
  3237. Optional 2nd argument CLEAR-MARK remove any kinds of mark."
  3238.   (save-excursion
  3239.     (set-buffer gnus-summary-buffer)
  3240.     ;; First of all, show hidden thread subtrees.
  3241.     (gnus-summary-show-thread)
  3242.     (let* ((buffer-read-only nil)
  3243.        (current (gnus-summary-article-number))
  3244.        (article (or article current)))
  3245.       (gnus-mark-article-as-unread article clear-mark)
  3246.       (if (or (eq article current)
  3247.           (gnus-summary-goto-subject article))
  3248.       (progn
  3249.         (beginning-of-line)
  3250.         (delete-char 1)
  3251.         (insert (if clear-mark " " "-"))))
  3252.       )))
  3253.  
  3254. (defun gnus-summary-mark-as-read-forward (count)
  3255.   "Mark current article as read, and then go forward.
  3256. Argument COUNT specifies number of articles marked as read"
  3257.   (interactive "p")
  3258.   (while (> count 0)
  3259.     (gnus-summary-mark-as-read)
  3260.     (gnus-summary-next-subject 1 'unread-only)
  3261.     (setq count (1- count))))
  3262.  
  3263. (defun gnus-summary-mark-as-read-backward (count)
  3264.   "Mark current article as read, and then go backward.
  3265. Argument COUNT specifies number of articles marked as read"
  3266.   (interactive "p")
  3267.   (while (> count 0)
  3268.     (gnus-summary-mark-as-read)
  3269.     (gnus-summary-prev-subject 1 'unread-only)
  3270.     (setq count (1- count))))
  3271.  
  3272. (defun gnus-summary-mark-as-read (&optional article mark)
  3273.   "Mark current article as read.
  3274. Optional 1st argument ARTICLE specifies article number to be marked as read.
  3275. Optional 2nd argument MARK specifies a string inserted at beginning of line.
  3276. Any kind of string (length 1) except for a space and `-' is ok."
  3277.   (save-excursion
  3278.     (set-buffer gnus-summary-buffer)
  3279.     ;; First of all, show hidden thread subtrees.
  3280.     (gnus-summary-show-thread)
  3281.     (let* ((buffer-read-only nil)
  3282.        (mark (or mark "D"))        ;Default mark is `D'.
  3283.        (current (gnus-summary-article-number))
  3284.        (article (or article current)))
  3285.       (gnus-mark-article-as-read article)
  3286.       (if (or (eq article current)
  3287.           (gnus-summary-goto-subject article))
  3288.       (progn
  3289.         (beginning-of-line)
  3290.         (delete-char 1)
  3291.         (insert mark)))
  3292.       )))
  3293.  
  3294. (defun gnus-summary-clear-mark-forward (count)
  3295.   "Remove current article's mark, and go forward.
  3296. Argument COUNT specifies number of articles unmarked"
  3297.   (interactive "p")
  3298.   (while (> count 0)
  3299.     (gnus-summary-mark-as-unread nil t)
  3300.     (gnus-summary-next-subject 1 nil)
  3301.     (setq count (1- count))))
  3302.  
  3303. (defun gnus-summary-clear-mark-backward (count)
  3304.   "Remove current article's mark, and go backward.
  3305. Argument COUNT specifies number of articles unmarked"
  3306.   (interactive "p")
  3307.   (while (> count 0)
  3308.     (gnus-summary-mark-as-unread nil t)
  3309.     (gnus-summary-prev-subject 1 nil)
  3310.     (setq count (1- count))))
  3311.  
  3312. (defun gnus-summary-delete-marked-as-read ()
  3313.   "Delete lines which is marked as read."
  3314.   (interactive)
  3315.   (if gnus-newsgroup-unreads
  3316.       (let ((buffer-read-only nil))
  3317.     (save-excursion
  3318.       (goto-char (point-min))
  3319.       (delete-non-matching-lines "^[ ---]"))
  3320.     ;; Adjust point.
  3321.     (if (eobp)
  3322.         (gnus-summary-prev-subject 1)
  3323.       (beginning-of-line)
  3324.       (search-forward ":" nil t)))
  3325.     ;; It is not so good idea to make the buffer empty.
  3326.     (message "All articles are marked as read")
  3327.     ))
  3328.  
  3329. (defun gnus-summary-delete-marked-with (marks)
  3330.   "Delete lines which are marked with MARKS (e.g. \"DK\")."
  3331.   (interactive "sMarks: ")
  3332.   (let ((buffer-read-only nil))
  3333.     (save-excursion
  3334.       (goto-char (point-min))
  3335.       (delete-matching-lines (concat "^[" marks "]")))
  3336.     ;; Adjust point.
  3337.     (or (zerop (buffer-size))
  3338.     (if (eobp)
  3339.         (gnus-summary-prev-subject 1)
  3340.       (beginning-of-line)
  3341.       (search-forward ":" nil t)))
  3342.     ))
  3343.  
  3344. ;; Thread-based commands.
  3345.  
  3346. (defun gnus-summary-toggle-threads (arg)
  3347.   "Toggle showing conversation threads.
  3348. With arg, turn showing conversation threads on iff arg is positive."
  3349.   (interactive "P")
  3350.   (let ((current (gnus-summary-article-number)))
  3351.     (setq gnus-show-threads
  3352.       (if (null arg) (not gnus-show-threads)
  3353.         (> (prefix-numeric-value arg) 0)))
  3354.     (gnus-summary-prepare)
  3355.     (gnus-summary-goto-subject current)
  3356.     ))
  3357.  
  3358. (defun gnus-summary-show-all-threads ()
  3359.   "Show all thread subtrees."
  3360.   (interactive)
  3361.   (if gnus-show-threads
  3362.       (save-excursion
  3363.     (let ((buffer-read-only nil))
  3364.       (subst-char-in-region (point-min) (point-max) ?\^M ?\n t)
  3365.       ))))
  3366.  
  3367. (defun gnus-summary-show-thread ()
  3368.   "Show thread subtrees."
  3369.   (interactive)
  3370.   (if gnus-show-threads
  3371.       (save-excursion
  3372.     (let ((buffer-read-only nil))
  3373.       (subst-char-in-region (progn
  3374.                   (beginning-of-line) (point))
  3375.                 (progn
  3376.                   (end-of-line) (point))
  3377.                 ?\^M ?\n t)
  3378.       ))))
  3379.  
  3380. (defun gnus-summary-hide-all-threads ()
  3381.   "Hide all thread subtrees."
  3382.   (interactive)
  3383.   (if gnus-show-threads
  3384.       (save-excursion
  3385.     ;; Adjust cursor point.
  3386.     (goto-char (point-min))
  3387.     (search-forward ":" nil t)
  3388.     (let ((level (current-column)))
  3389.       (gnus-summary-hide-thread)
  3390.       (while (gnus-summary-search-forward)
  3391.         (and (>= level (current-column))
  3392.          (gnus-summary-hide-thread)))
  3393.       ))))
  3394.  
  3395. (defun gnus-summary-hide-thread ()
  3396.   "Hide thread subtrees."
  3397.   (interactive)
  3398.   (if gnus-show-threads
  3399.       (save-excursion
  3400.     ;; Adjust cursor point.
  3401.     (beginning-of-line)
  3402.     (search-forward ":" nil t)
  3403.     (let ((buffer-read-only nil)
  3404.           (init (point))
  3405.           (last (point))
  3406.           (level (current-column)))
  3407.       (while (and (gnus-summary-search-forward)
  3408.               (< level (current-column)))
  3409.         ;; Interested in lower levels.
  3410.         (if (< level (current-column))
  3411.         (progn
  3412.           (setq last (point))
  3413.           ))
  3414.         )
  3415.       (subst-char-in-region init last ?\n ?\^M t)
  3416.       ))))
  3417.  
  3418. (defun gnus-summary-next-thread (n)
  3419.   "Go to the same level next thread.
  3420. Argument N specifies the number of threads."
  3421.   (interactive "p")
  3422.   ;; Adjust cursor point.
  3423.   (beginning-of-line)
  3424.   (search-forward ":" nil t)
  3425.   (let ((init (point))
  3426.     (last (point))
  3427.     (level (current-column)))
  3428.     (while (and (> n 0)
  3429.         (gnus-summary-search-forward)
  3430.         (<= level (current-column)))
  3431.       ;; We have to skip lower levels.
  3432.       (if (= level (current-column))
  3433.       (progn
  3434.         (setq last (point))
  3435.         (setq n (1- n))
  3436.         ))
  3437.       )
  3438.     ;; Return non-nil if successfully move to the next.
  3439.     (prog1 (not (= init last))
  3440.       (goto-char last))
  3441.     ))
  3442.  
  3443. (defun gnus-summary-prev-thread (n)
  3444.   "Go to the same level previous thread.
  3445. Argument N specifies the number of threads."
  3446.   (interactive "p")
  3447.   ;; Adjust cursor point.
  3448.   (beginning-of-line)
  3449.   (search-forward ":" nil t)
  3450.   (let ((init (point))
  3451.     (last (point))
  3452.     (level (current-column)))
  3453.     (while (and (> n 0)
  3454.         (gnus-summary-search-backward)
  3455.         (<= level (current-column)))
  3456.       ;; We have to skip lower levels.
  3457.       (if (= level (current-column))
  3458.       (progn
  3459.         (setq last (point))
  3460.         (setq n (1- n))
  3461.         ))
  3462.       )
  3463.     ;; Return non-nil if successfully move to the previous.
  3464.     (prog1 (not (= init last))
  3465.       (goto-char last))
  3466.     ))
  3467.  
  3468. (defun gnus-summary-down-thread (d)
  3469.   "Go downward current thread.
  3470. Argument D specifies the depth goes down."
  3471.   (interactive "p")
  3472.   ;; Adjust cursor point.
  3473.   (beginning-of-line)
  3474.   (search-forward ":" nil t)
  3475.   (let ((last (point))
  3476.     (level (current-column)))
  3477.     (while (and (> d 0)
  3478.         (gnus-summary-search-forward)
  3479.         (<= level (current-column))) ;<= can be <.  Which do you like?
  3480.       ;; We have to skip the same levels.
  3481.       (if (< level (current-column))
  3482.       (progn
  3483.         (setq last (point))
  3484.         (setq level (current-column))
  3485.         (setq d (1- d))
  3486.         ))
  3487.       )
  3488.     (goto-char last)
  3489.     ))
  3490.  
  3491. (defun gnus-summary-up-thread (d)
  3492.   "Go upward current thread.
  3493. Argument D specifies the depth goes up."
  3494.   (interactive "p")
  3495.   ;; Adjust cursor point.
  3496.   (beginning-of-line)
  3497.   (search-forward ":" nil t)
  3498.   (let ((last (point))
  3499.     (level (current-column)))
  3500.     (while (and (> d 0)
  3501.         (gnus-summary-search-backward))
  3502.       ;; We have to skip the same levels.
  3503.       (if (> level (current-column))
  3504.       (progn
  3505.         (setq last (point))
  3506.         (setq level (current-column))
  3507.         (setq d (1- d))
  3508.         ))
  3509.       )
  3510.     (goto-char last)
  3511.     ))
  3512.  
  3513. (defun gnus-summary-kill-thread (unmark)
  3514.   "Mark articles under current thread as read.
  3515. If argument UNMARK is positive, remove any kinds of marks.
  3516. If argument UNMARK is negative, mark articles as unread instead."
  3517.   (interactive "P")
  3518.   (if unmark
  3519.       (setq unmark (prefix-numeric-value unmark)))
  3520.   ;; Adjust cursor point.
  3521.   (beginning-of-line)
  3522.   (search-forward ":" nil t)
  3523.   (save-excursion
  3524.     (let ((level (current-column)))
  3525.       ;; Mark current article.
  3526.       (cond ((null unmark)
  3527.          (gnus-summary-mark-as-read nil "K"))
  3528.         ((> unmark 0)
  3529.          (gnus-summary-mark-as-unread nil t))
  3530.         (t
  3531.          (gnus-summary-mark-as-unread))
  3532.         )
  3533.       ;; Mark following articles.
  3534.       (while (and (gnus-summary-search-forward)
  3535.           (< level (current-column)))
  3536.     (cond ((null unmark)
  3537.            (gnus-summary-mark-as-read nil "K"))
  3538.           ((> unmark 0)
  3539.            (gnus-summary-mark-as-unread nil t))
  3540.           (t
  3541.            (gnus-summary-mark-as-unread))
  3542.           ))
  3543.       ))
  3544.   ;; Hide killed subtrees.
  3545.   (and (null unmark)
  3546.        gnus-thread-hide-killed
  3547.        (gnus-summary-hide-thread))
  3548.   ;; If marked as read, go to next unread subject.
  3549.   (if (null unmark)
  3550.       ;; Go to next unread subject.
  3551.       (gnus-summary-next-subject 1 t))
  3552.   )
  3553.  
  3554. (defun gnus-summary-toggle-truncation (arg)
  3555.   "Toggle truncation of summary lines.
  3556. With arg, turn line truncation on iff arg is positive."
  3557.   (interactive "P")
  3558.   (setq truncate-lines
  3559.     (if (null arg) (not truncate-lines)
  3560.       (> (prefix-numeric-value arg) 0)))
  3561.   (redraw-display))
  3562.  
  3563. (defun gnus-summary-sort-by-number (reverse)
  3564.   "Sort Summary buffer by article number.
  3565. Argument REVERSE means reverse order."
  3566.   (interactive "P")
  3567.   (gnus-summary-keysort-summary
  3568.    (function <)
  3569.    (function
  3570.     (lambda (a)
  3571.       (nntp-header-number a)))
  3572.    reverse
  3573.    ))
  3574.  
  3575. (defun gnus-summary-sort-by-author (reverse)
  3576.   "Sort Summary buffer by author name alphabetically.
  3577. If case-fold-search is non-nil, case of letters is ignored.
  3578. Argument REVERSE means reverse order."
  3579.   (interactive "P")
  3580.   (gnus-summary-keysort-summary
  3581.    (function string-lessp)
  3582.    (function
  3583.     (lambda (a)
  3584.       (if case-fold-search
  3585.       (downcase (nntp-header-from a))
  3586.     (nntp-header-from a))))
  3587.    reverse
  3588.    ))
  3589.  
  3590. (defun gnus-summary-sort-by-subject (reverse)
  3591.   "Sort Summary buffer by subject alphabetically. `Re:'s are ignored.
  3592. If case-fold-search is non-nil, case of letters is ignored.
  3593. Argument REVERSE means reverse order."
  3594.   (interactive "P")
  3595.   (gnus-summary-keysort-summary
  3596.    (function string-lessp)
  3597.    (function
  3598.     (lambda (a)
  3599.       (if case-fold-search
  3600.       (downcase (gnus-simplify-subject (nntp-header-subject a) 're-only))
  3601.     (gnus-simplify-subject (nntp-header-subject a) 're-only))))
  3602.    reverse
  3603.    ))
  3604.  
  3605. (defun gnus-summary-sort-by-date (reverse)
  3606.   "Sort Summary buffer by date.
  3607. Argument REVERSE means reverse order."
  3608.   (interactive "P")
  3609.   (gnus-summary-keysort-summary
  3610.    (function string-lessp)
  3611.    (function
  3612.     (lambda (a)
  3613.       (gnus-sortable-date (nntp-header-date a))))
  3614.    reverse
  3615.    ))
  3616.  
  3617. (defun gnus-summary-keysort-summary (predicate key &optional reverse)
  3618.   "Sort Summary buffer by PREDICATE using a value passed by KEY.
  3619. Optional argument REVERSE means reverse order."
  3620.   (let ((current (gnus-summary-article-number)))
  3621.     (gnus-keysort-headers predicate key reverse)
  3622.     (gnus-summary-prepare)
  3623.     (gnus-summary-goto-subject current)
  3624.     ))
  3625.  
  3626. (defun gnus-summary-sort-summary (predicate &optional reverse)
  3627.   "Sort Summary buffer by PREDICATE.
  3628. Optional argument REVERSE means reverse order."
  3629.   (let ((current (gnus-summary-article-number)))
  3630.     (gnus-sort-headers predicate reverse)
  3631.     (gnus-summary-prepare)
  3632.     (gnus-summary-goto-subject current)
  3633.     ))
  3634.  
  3635. (defun gnus-summary-reselect-current-group (show-all)
  3636.   "Once exit and then reselect the current newsgroup.
  3637. Prefix argument SHOW-ALL means to select all articles."
  3638.   (interactive "P")
  3639.   (let ((current-subject (gnus-summary-article-number)))
  3640.     (gnus-summary-exit t)
  3641.     ;; We have to adjust the point of Group mode buffer because the
  3642.     ;; current point was moved to the next unread newsgroup by
  3643.     ;; exiting.
  3644.     (gnus-summary-jump-to-group gnus-newsgroup-name)
  3645.     (gnus-group-read-group show-all t)
  3646.     (gnus-summary-goto-subject current-subject)
  3647.     ))
  3648.  
  3649. (defun gnus-summary-caesar-message (rotnum)
  3650.   "Caesar rotates all letters of current message by 13/47 places.
  3651. With prefix arg, specifies the number of places to rotate each letter forward.
  3652. Caesar rotates Japanese letters by 47 places in any case."
  3653.   (interactive "P")
  3654.   (gnus-summary-select-article)
  3655.   (gnus-overload-functions)
  3656.   (gnus-eval-in-buffer-window gnus-article-buffer
  3657.     (save-restriction
  3658.       (widen)
  3659.       ;; We don't want to jump to the beginning of the message.
  3660.       ;; `save-excursion' does not do its job.
  3661.       (move-to-window-line 0)
  3662.       (let ((last (point)))
  3663.     (news-caesar-buffer-body rotnum)
  3664.     (goto-char last)
  3665.     (recenter 0)
  3666.     ))
  3667.     ))
  3668.  
  3669. (defun gnus-summary-rmail-digest ()
  3670.   "Run RMAIL on current digest article.
  3671. gnus-select-digest-hook will be called with no arguments, if that
  3672. value is non-nil. It is possible to modify the article so that Rmail
  3673. can work with it.
  3674. gnus-rmail-digest-hook will be called with no arguments, if that value
  3675. is non-nil. The hook is intended to customize Rmail mode."
  3676.   (interactive)
  3677.   (gnus-summary-select-article)
  3678.   (require 'rmail)
  3679.   (let ((artbuf gnus-article-buffer)
  3680.     (digbuf (get-buffer-create gnus-digest-buffer))
  3681.     (mail-header-separator ""))
  3682.     (set-buffer digbuf)
  3683.     (buffer-flush-undo (current-buffer))
  3684.     (setq buffer-read-only nil)
  3685.     (erase-buffer)
  3686.     (insert-buffer-substring artbuf)
  3687.     (run-hooks 'gnus-select-digest-hook)
  3688.     (gnus-convert-article-to-rmail)
  3689.     (goto-char (point-min))
  3690.     ;; Rmail initializations.
  3691.     (rmail-insert-rmail-file-header)
  3692.     (rmail-mode)
  3693.     (rmail-set-message-counters)
  3694.     (rmail-show-message)
  3695.     (condition-case ()
  3696.     (progn
  3697.       (undigestify-rmail-message)
  3698.       (rmail-expunge)        ;Delete original message.
  3699.       ;; File name is meaningless but `save-buffer' requires it.
  3700.       (setq buffer-file-name "GNUS Digest")
  3701.       (setq mode-line-buffer-identification
  3702.         (concat "Digest: "
  3703.             (nntp-header-subject gnus-current-headers)))
  3704.       ;; There is no need to write this buffer to a file.
  3705.       (make-local-variable 'write-file-hooks)
  3706.       (setq write-file-hooks
  3707.         (list (function
  3708.                (lambda ()
  3709.              (set-buffer-modified-p nil)
  3710.              (message "(No changes need to be saved)")
  3711.              'no-need-to-write-this-buffer))))
  3712.       ;; Default file name saving digest messages.
  3713.       (setq rmail-last-rmail-file
  3714.         (funcall gnus-rmail-save-name
  3715.              gnus-newsgroup-name
  3716.              gnus-current-headers
  3717.              gnus-newsgroup-last-rmail
  3718.              ))
  3719.       (setq rmail-last-file
  3720.         (funcall gnus-mail-save-name
  3721.              gnus-newsgroup-name
  3722.              gnus-current-headers
  3723.              gnus-newsgroup-last-mail
  3724.              ))
  3725.       ;; Prevent generating new buffer named ***<N> each time.
  3726.       (setq rmail-summary-buffer
  3727.         (get-buffer-create gnus-digest-summary-buffer))
  3728.       (run-hooks 'gnus-rmail-digest-hook)
  3729.       ;; Take all windows safely.
  3730.       (gnus-configure-windows '(1 0 0))
  3731.       (pop-to-buffer gnus-group-buffer)
  3732.       ;; Use Summary Article windows for Digest summary and
  3733.       ;; Digest buffers.
  3734.       (if gnus-digest-show-summary
  3735.           (let ((gnus-summary-buffer gnus-digest-summary-buffer)
  3736.             (gnus-article-buffer gnus-digest-buffer))
  3737.         (gnus-configure-windows 'article)
  3738.         (pop-to-buffer gnus-digest-buffer)
  3739.         (rmail-summary)
  3740.         (pop-to-buffer gnus-digest-summary-buffer)
  3741.         (message (substitute-command-keys
  3742.               "Type \\[rmail-summary-quit] to return to GNUS")))
  3743.         (let ((gnus-summary-buffer gnus-digest-buffer))
  3744.           (gnus-configure-windows 'summary)
  3745.           (pop-to-buffer gnus-digest-buffer)
  3746.           (message (substitute-command-keys
  3747.             "Type \\[rmail-quit] to return to GNUS")))
  3748.         )
  3749.       ;; Move the buffers to the end of buffer list.
  3750.       (bury-buffer gnus-article-buffer)
  3751.       (bury-buffer gnus-group-buffer)
  3752.       (bury-buffer gnus-digest-summary-buffer)
  3753.       (bury-buffer gnus-digest-buffer))
  3754.       (error (set-buffer-modified-p nil)
  3755.          (kill-buffer digbuf)
  3756.          ;; This command should not signal an error because the
  3757.          ;; command is called from hooks.
  3758.          (ding) (message "Article is not a digest")))
  3759.     ))
  3760.  
  3761. (defun gnus-summary-save-article ()
  3762.   "Save this article using default saver function.
  3763. The variable `gnus-default-article-saver' specifies the saver function."
  3764.   (interactive)
  3765.   (gnus-summary-select-article gnus-save-all-headers gnus-save-all-headers)
  3766.   (if gnus-default-article-saver
  3767.       (call-interactively gnus-default-article-saver)
  3768.     (error "No default saver is defined.")))
  3769.  
  3770. (defun gnus-summary-save-in-rmail (&optional filename)
  3771.   "Append this article to Rmail file.
  3772. Optional argument FILENAME specifies file name.
  3773. Directory to save to is default to `gnus-article-save-directory' which
  3774. is initialized from the SAVEDIR environment variable."
  3775.   (interactive)
  3776.   (gnus-summary-select-article gnus-save-all-headers gnus-save-all-headers)
  3777.   (gnus-eval-in-buffer-window gnus-article-buffer
  3778.     (save-excursion
  3779.       (save-restriction
  3780.     (widen)
  3781.     (let ((default-name
  3782.         (funcall gnus-rmail-save-name
  3783.              gnus-newsgroup-name
  3784.              gnus-current-headers
  3785.              gnus-newsgroup-last-rmail
  3786.              )))
  3787.       (or filename
  3788.           (setq filename
  3789.             (read-file-name
  3790.              (concat "Save article in Rmail file: (default "
  3791.                  (file-name-nondirectory default-name)
  3792.                  ") ")
  3793.              (file-name-directory default-name)
  3794.              default-name)))
  3795.       (gnus-make-directory (file-name-directory filename))
  3796.       (gnus-output-to-rmail filename)
  3797.       ;; Remember the directory name to save articles.
  3798.       (setq gnus-newsgroup-last-rmail filename)
  3799.       )))
  3800.     ))
  3801.  
  3802. (defun gnus-summary-save-in-mail (&optional filename)
  3803.   "Append this article to Unix mail file.
  3804. Optional argument FILENAME specifies file name.
  3805. Directory to save to is default to `gnus-article-save-directory' which
  3806. is initialized from the SAVEDIR environment variable."
  3807.   (interactive)
  3808.   (gnus-summary-select-article gnus-save-all-headers gnus-save-all-headers)
  3809.   (gnus-eval-in-buffer-window gnus-article-buffer
  3810.     (save-excursion
  3811.       (save-restriction
  3812.     (widen)
  3813.     (let ((default-name
  3814.         (funcall gnus-mail-save-name
  3815.              gnus-newsgroup-name
  3816.              gnus-current-headers
  3817.              gnus-newsgroup-last-mail
  3818.              )))
  3819.       (or filename
  3820.           (setq filename
  3821.             (read-file-name
  3822.              (concat "Save article in Unix mail file: (default "
  3823.                  (file-name-nondirectory default-name)
  3824.                  ") ")
  3825.              (file-name-directory default-name)
  3826.              default-name)))
  3827.       (gnus-make-directory (file-name-directory filename))
  3828.       (rmail-output filename)
  3829.       ;; Remember the directory name to save articles.
  3830.       (setq gnus-newsgroup-last-mail filename)
  3831.       )))
  3832.     ))
  3833.  
  3834. (defun gnus-summary-save-in-file (&optional filename)
  3835.   "Append this article to file.
  3836. Optional argument FILENAME specifies file name.
  3837. Directory to save to is default to `gnus-article-save-directory' which
  3838. is initialized from the SAVEDIR environment variable."
  3839.   (interactive)
  3840.   (gnus-summary-select-article gnus-save-all-headers gnus-save-all-headers)
  3841.   (gnus-eval-in-buffer-window gnus-article-buffer
  3842.     (save-excursion
  3843.       (save-restriction
  3844.     (widen)
  3845.     (let ((default-name
  3846.         (funcall gnus-file-save-name
  3847.              gnus-newsgroup-name
  3848.              gnus-current-headers
  3849.              gnus-newsgroup-last-file
  3850.              )))
  3851.       (or filename
  3852.           (setq filename
  3853.             (read-file-name
  3854.              (concat "Save article in file: (default "
  3855.                  (file-name-nondirectory default-name)
  3856.                  ") ")
  3857.              (file-name-directory default-name)
  3858.              default-name)))
  3859.       (gnus-make-directory (file-name-directory filename))
  3860.       (gnus-output-to-file filename)
  3861.       ;; Remember the directory name to save articles.
  3862.       (setq gnus-newsgroup-last-file filename)
  3863.       )))
  3864.     ))
  3865.  
  3866. (defun gnus-summary-save-in-folder (&optional folder)
  3867.   "Save this article to MH folder (using `rcvstore' in MH library).
  3868. Optional argument FOLDER specifies folder name."
  3869.   (interactive)
  3870.   (gnus-summary-select-article gnus-save-all-headers gnus-save-all-headers)
  3871.   (gnus-eval-in-buffer-window gnus-article-buffer
  3872.     (save-restriction
  3873.       (widen)
  3874.       ;; Thanks to yuki@flab.Fujitsu.JUNET and ohm@kaba.junet.
  3875.       (mh-find-path)
  3876.       (let ((folder
  3877.          (or folder
  3878.          (mh-prompt-for-folder "Save article in"
  3879.                        (funcall gnus-folder-save-name
  3880.                         gnus-newsgroup-name
  3881.                         gnus-current-headers
  3882.                         gnus-newsgroup-last-folder
  3883.                         )
  3884.                        t
  3885.                        )))
  3886.         (errbuf (get-buffer-create " *GNUS rcvstore*")))
  3887.     (unwind-protect
  3888.         (call-process-region (point-min) (point-max)
  3889.                  (expand-file-name "rcvstore" mh-lib)
  3890.                  nil errbuf nil folder)
  3891.       (set-buffer errbuf)
  3892.       (if (zerop (buffer-size))
  3893.           (message "Article saved in folder: %s" folder)
  3894.         (message "%s" (buffer-string)))
  3895.       (kill-buffer errbuf)
  3896.       (setq gnus-newsgroup-last-folder folder))
  3897.     ))
  3898.     ))
  3899.  
  3900. (defun gnus-summary-pipe-output ()
  3901.   "Pipe this article to subprocess."
  3902.   (interactive)
  3903.   ;; Ignore `gnus-save-all-headers' since this is not save command.
  3904.   ;;(gnus-summary-select-article)
  3905.   ;; Huuum.  Is this right?
  3906.   (gnus-summary-select-article gnus-save-all-headers gnus-save-all-headers)
  3907.   (gnus-eval-in-buffer-window gnus-article-buffer
  3908.     (save-restriction
  3909.       (widen)
  3910.       (let ((command (read-string "Shell command on article: "
  3911.                   gnus-last-shell-command)))
  3912.     (if (string-equal command "")
  3913.         (setq command gnus-last-shell-command))
  3914.     (shell-command-on-region (point-min) (point-max) command nil)
  3915.     (setq gnus-last-shell-command command)
  3916.     ))
  3917.     ))
  3918.  
  3919. (defun gnus-summary-catchup (all &optional quietly)
  3920.   "Mark all articles not marked as unread in this newsgroup as read.
  3921. If prefix argument ALL is non-nil, all articles are marked as read."
  3922.   (interactive "P")
  3923.   (if (or quietly
  3924.       (y-or-n-p
  3925.        (if all
  3926.            "Do you really want to mark everything as read? "
  3927.          "Delete all articles not marked as unread? ")))
  3928.       (let ((unmarked
  3929.          (gnus-set-difference gnus-newsgroup-unreads
  3930.                   (if (not all) gnus-newsgroup-marked))))
  3931.         (message "")            ;Erase "Yes or No" question.
  3932.     ;; Hidden thread subtrees must be searched for ,too.
  3933.     (gnus-summary-show-all-threads)
  3934.     (while unmarked
  3935.           (gnus-summary-mark-as-read (car unmarked) "C")
  3936.       (setq unmarked (cdr unmarked))
  3937.       ))
  3938.     ))
  3939.  
  3940. (defun gnus-summary-catchup-all (&optional quietly)
  3941.   "Mark all articles in this newsgroup as read."
  3942.   (interactive)
  3943.   (gnus-summary-catchup t quietly))
  3944.  
  3945. (defun gnus-summary-catchup-and-exit (all &optional quietly)
  3946.   "Mark all articles not marked as unread in this newsgroup as read, then exit.
  3947. If prefix argument ALL is non-nil, all articles are marked as read."
  3948.   (interactive "P")
  3949.   (if (or quietly
  3950.       (y-or-n-p
  3951.        (if all
  3952.            "Do you really want to mark everything as read? "
  3953.          "Delete all articles not marked as unread? ")))
  3954.       (let ((unmarked
  3955.              (gnus-set-difference gnus-newsgroup-unreads
  3956.                                   (if (not all) gnus-newsgroup-marked))))
  3957.         (message "")            ;Erase "Yes or No" question.
  3958.     (while unmarked
  3959.           (gnus-mark-article-as-read (car unmarked))
  3960.       (setq unmarked (cdr unmarked)))
  3961.     ;; Select next newsgroup or exit.
  3962.     (cond ((eq gnus-auto-select-next 'quietly)
  3963.            ;; Select next newsgroup quietly.
  3964.            (gnus-summary-next-group nil))
  3965.           (t
  3966.            (gnus-summary-exit)))
  3967.     )))
  3968.  
  3969. (defun gnus-summary-catchup-all-and-exit (&optional quietly)
  3970.   "Mark all articles in this newsgroup as read, and then exit."
  3971.   (interactive)
  3972.   (gnus-summary-catchup-and-exit t quietly))
  3973.  
  3974. (defun gnus-summary-edit-global-kill ()
  3975.   "Edit a global KILL file."
  3976.   (interactive)
  3977.   (setq gnus-current-kill-article (gnus-summary-article-number))
  3978.   (gnus-kill-file-edit-file nil)    ;Nil stands for global KILL file.
  3979.   (message
  3980.    (substitute-command-keys
  3981.     "Editing a global KILL file (Type \\[gnus-kill-file-exit] to exit)")))
  3982.  
  3983. (defun gnus-summary-edit-local-kill ()
  3984.   "Edit a local KILL file applied to the current newsgroup."
  3985.   (interactive)
  3986.   (setq gnus-current-kill-article (gnus-summary-article-number))
  3987.   (gnus-kill-file-edit-file gnus-newsgroup-name)
  3988.   (message
  3989.    (substitute-command-keys
  3990.     "Editing a local KILL file (Type \\[gnus-kill-file-exit] to exit)")))
  3991.  
  3992. (defun gnus-summary-exit (&optional temporary)
  3993.   "Exit reading current newsgroup, and then return to group selection mode.
  3994. gnus-exit-group-hook is called with no arguments if that value is non-nil."
  3995.   (interactive)
  3996.   (let ((updated nil)
  3997.     (gnus-newsgroup-headers gnus-newsgroup-headers)
  3998.     (gnus-newsgroup-unreads gnus-newsgroup-unreads)
  3999.     (gnus-newsgroup-unselected gnus-newsgroup-unselected)
  4000.     (gnus-newsgroup-marked gnus-newsgroup-marked))
  4001.     ;; Important internal variables are saved, so we can reenter
  4002.     ;; Summary buffer even if hook changes them.
  4003.     (run-hooks 'gnus-exit-group-hook)
  4004.     (gnus-update-unread-articles gnus-newsgroup-name
  4005.                  (append gnus-newsgroup-unselected
  4006.                      gnus-newsgroup-unreads)
  4007.                  gnus-newsgroup-marked)
  4008.     ;; T means ignore unsubscribed newsgroups.
  4009.     (if gnus-use-cross-reference
  4010.     (setq updated
  4011.           (gnus-mark-as-read-by-xref gnus-newsgroup-name
  4012.                      gnus-newsgroup-headers
  4013.                      gnus-newsgroup-unreads
  4014.                      (eq gnus-use-cross-reference t)
  4015.                      )))
  4016.     ;; Do not switch windows but change the buffer to work.
  4017.     (set-buffer gnus-group-buffer)
  4018.     ;; Update cross referenced group info.
  4019.     (while updated
  4020.       (gnus-group-update-group (car updated) t) ;Ignore invisible group.
  4021.       (setq updated (cdr updated)))
  4022.     (gnus-group-update-group gnus-newsgroup-name))
  4023.   ;; Make sure where I was, and go to next newsgroup.
  4024.   (gnus-group-jump-to-group gnus-newsgroup-name)
  4025.   (gnus-group-next-unread-group 1)
  4026.   (if temporary
  4027.       ;; If exiting temporary, caller should adjust Group mode
  4028.       ;; buffer point by itself.
  4029.       nil                ;Nothing to do.
  4030.     ;; Return to Group mode buffer.
  4031.     (if (get-buffer gnus-summary-buffer)
  4032.     (bury-buffer gnus-summary-buffer))
  4033.     (if (get-buffer gnus-article-buffer)
  4034.     (bury-buffer gnus-article-buffer))
  4035.     (gnus-configure-windows 'newsgroups)
  4036.     (pop-to-buffer gnus-group-buffer)))
  4037.  
  4038. (defun gnus-summary-quit ()
  4039.   "Quit reading current newsgroup without updating read article info."
  4040.   (interactive)
  4041.   (if (y-or-n-p "Do you really wanna quit reading this group? ")
  4042.       (progn
  4043.     (message "")            ;Erase "Yes or No" question.
  4044.     ;; Return to Group selection mode.
  4045.     (if (get-buffer gnus-summary-buffer)
  4046.         (bury-buffer gnus-summary-buffer))
  4047.     (if (get-buffer gnus-article-buffer)
  4048.         (bury-buffer gnus-article-buffer))
  4049.     (gnus-configure-windows 'newsgroups)
  4050.     (pop-to-buffer gnus-group-buffer)
  4051.     (gnus-group-jump-to-group gnus-newsgroup-name) ;Make sure where I was.
  4052.     (gnus-group-next-group 1)    ;(gnus-group-next-unread-group 1)
  4053.     )))
  4054.  
  4055. (defun gnus-summary-describe-briefly ()
  4056.   "Describe Summary mode commands briefly."
  4057.   (interactive)
  4058.   (message
  4059.    (concat
  4060.     (substitute-command-keys "\\[gnus-summary-next-page]:Select  ")
  4061.     (substitute-command-keys "\\[gnus-summary-next-unread-article]:Forward  ")
  4062.     (substitute-command-keys "\\[gnus-summary-prev-unread-article]:Backward  ")
  4063.     (substitute-command-keys "\\[gnus-summary-exit]:Exit  ")
  4064.     (substitute-command-keys "\\[gnus-info-find-node]:Run Info  ")
  4065.     (substitute-command-keys "\\[gnus-summary-describe-briefly]:This help")
  4066.     )))
  4067.  
  4068.  
  4069. ;;;
  4070. ;;; GNUS Article Mode
  4071. ;;;
  4072.  
  4073. (if gnus-article-mode-map
  4074.     nil
  4075.   (setq gnus-article-mode-map (make-keymap))
  4076.   (suppress-keymap gnus-article-mode-map)
  4077.   (define-key gnus-article-mode-map " " 'gnus-article-next-page)
  4078.   (define-key gnus-article-mode-map "\177" 'gnus-article-prev-page)
  4079.   (define-key gnus-article-mode-map "r" 'gnus-article-refer-article)
  4080.   (define-key gnus-article-mode-map "o" 'gnus-article-pop-article)
  4081.   (define-key gnus-article-mode-map "h" 'gnus-article-show-summary)
  4082.   (define-key gnus-article-mode-map "s" 'gnus-article-show-summary)
  4083.   (define-key gnus-article-mode-map "?" 'gnus-article-describe-briefly)
  4084.   (define-key gnus-article-mode-map "\C-c\C-i" 'gnus-info-find-node))
  4085.  
  4086. (defun gnus-article-mode ()
  4087.   "Major mode for browsing through an article.
  4088. All normal editing commands are turned off.
  4089. Instead, these commands are available:
  4090. \\{gnus-article-mode-map}
  4091.  
  4092. Various hooks for customization:
  4093.  gnus-article-mode-hook
  4094.     Entry to this mode calls the value with no arguments, if that
  4095.     value is non-nil.
  4096.  
  4097.  gnus-article-prepare-hook
  4098.     Called with no arguments after an article is prepared for reading,
  4099.     if that value is non-nil."
  4100.   (interactive)
  4101.   (kill-all-local-variables)
  4102.   ;; Gee.  Why don't you upgrade?
  4103.   (cond ((boundp 'mode-line-modified)
  4104.      (setq mode-line-modified "--- "))
  4105.     ((listp (default-value 'mode-line-format))
  4106.      (setq mode-line-format
  4107.            (cons "--- " (cdr (default-value 'mode-line-format))))))
  4108.   ;; To disable display-time facility.
  4109.   ;;(make-local-variable 'global-mode-string)
  4110.   ;;(setq global-mode-string nil)
  4111.   (setq major-mode 'gnus-article-mode)
  4112.   (setq mode-name "Article")
  4113.   (make-local-variable 'minor-mode-alist)
  4114.   (or (assq 'gnus-show-mime minor-mode-alist)
  4115.       (setq minor-mode-alist
  4116.         (cons (list 'gnus-show-mime " MIME") minor-mode-alist)))
  4117.   (gnus-article-set-mode-line)
  4118.   (use-local-map gnus-article-mode-map)
  4119.   (make-local-variable 'page-delimiter)
  4120.   (setq page-delimiter gnus-page-delimiter)
  4121.   (make-local-variable 'mail-header-separator)
  4122.   (setq mail-header-separator "")    ;For caesar function.
  4123.   (buffer-flush-undo (current-buffer))
  4124.   (setq buffer-read-only t)        ;Disable modification
  4125.   (run-hooks 'gnus-article-mode-hook))
  4126.  
  4127. (defun gnus-article-setup-buffer ()
  4128.   "Initialize Article mode buffer."
  4129.   (or (get-buffer gnus-article-buffer)
  4130.       (save-excursion
  4131.     (set-buffer (get-buffer-create gnus-article-buffer))
  4132.     (gnus-article-mode))
  4133.       ))
  4134.  
  4135. (defun gnus-article-prepare (article &optional all-headers)
  4136.   "Prepare ARTICLE in Article mode buffer.
  4137. ARTICLE can be either a article number or Message-ID.
  4138. If optional argument ALL-HEADERS is non-nil, all headers are inserted."
  4139.   ;; Make sure a connection to NNTP server is alive.
  4140.   (if (not (gnus-server-opened))
  4141.       (progn
  4142.     (gnus-start-news-server)
  4143.     (gnus-request-group gnus-newsgroup-name)))
  4144.   (save-excursion
  4145.     (set-buffer gnus-article-buffer)
  4146.     (let ((buffer-read-only nil))
  4147.       (erase-buffer)
  4148.       ;; mhspool does not work with Message-ID.  So, let's translate
  4149.       ;; it into an article number as possible as can.  This may help
  4150.       ;; nnspool too.
  4151.       ;; Note: this conversion must be done here since if the article
  4152.       ;; is specified by number or message-id has a different meaning
  4153.       ;; in the following.
  4154.       (if (let* ((header
  4155.           (and (stringp article)
  4156.                (gnus-get-header-by-id article)))
  4157.          (article
  4158.           (if header
  4159.               (nntp-header-number header) article)))
  4160.         (gnus-request-article article))
  4161.       (progn
  4162.         ;; Prepare article buffer
  4163.         (insert-buffer-substring nntp-server-buffer)
  4164.         ;; gnus-have-all-headers must be either T or NIL.
  4165.         (setq gnus-have-all-headers
  4166.           (not (not (or all-headers gnus-show-all-headers))))
  4167.         (if (and (numberp article)
  4168.              (not (eq article gnus-current-article)))
  4169.         ;; Seems me that a new article has been selected.
  4170.         (progn
  4171.           ;; gnus-current-article must be an article number.
  4172.           (setq gnus-last-article gnus-current-article)
  4173.           (setq gnus-current-article article)
  4174. ;;          (setq gnus-current-headers
  4175. ;;            (gnus-find-header-by-number gnus-newsgroup-headers
  4176. ;;                            gnus-current-article))
  4177.           (setq gnus-current-headers
  4178.             (gnus-get-header-by-number gnus-current-article))
  4179.           (run-hooks 'gnus-mark-article-hook)
  4180.           ))
  4181.         ;; Clear article history only when the article is
  4182.         ;; retrieved by the article number.
  4183.         (if (numberp article)
  4184.         (setq gnus-current-history nil))
  4185.         ;; Hooks for modifying contents of the article.  This hook
  4186.         ;; must be called before being narrowed.
  4187.         (run-hooks 'gnus-article-prepare-hook)
  4188.         ;; Decode MIME message.
  4189.         (if (and gnus-show-mime
  4190.              (gnus-fetch-field "Mime-Version"))
  4191.         (funcall gnus-show-mime-method))
  4192.         ;; Delete unnecessary headers.
  4193.         (or gnus-have-all-headers
  4194.         (gnus-article-delete-headers))
  4195.         ;; Do page break.
  4196.         (goto-char (point-min))
  4197.         (if gnus-break-pages
  4198.         (gnus-narrow-to-page))
  4199.         ;; Next function must be called after setting
  4200.         ;;  `gnus-current-article' variable and narrowed to page.
  4201.         (gnus-article-set-mode-line)
  4202.         )
  4203.     ;; There is no such article.
  4204.     (if (numberp article)
  4205.         (gnus-summary-mark-as-read article))
  4206.     (ding) (message "No such article (may be canceled)"))
  4207.       )))
  4208.  
  4209. (defun gnus-article-show-all-headers ()
  4210.   "Show all article headers in Article mode buffer."
  4211.   (or gnus-have-all-headers
  4212.       (gnus-article-prepare gnus-current-article t)))
  4213.  
  4214. ;;(defun gnus-article-set-mode-line ()
  4215. ;;  "Set Article mode line string."
  4216. ;;  (setq mode-line-buffer-identification
  4217. ;;    (list 17
  4218. ;;          (format "GNUS: %s {%d-%d} %d"
  4219. ;;              gnus-newsgroup-name
  4220. ;;              gnus-newsgroup-begin
  4221. ;;              gnus-newsgroup-end
  4222. ;;              gnus-current-article
  4223. ;;                    )))
  4224. ;;  (set-buffer-modified-p t))
  4225.  
  4226. ;;(defun gnus-article-set-mode-line ()
  4227. ;;  "Set Article mode line string."
  4228. ;;  (let ((unmarked
  4229. ;;     (- (length gnus-newsgroup-unreads)
  4230. ;;        (length (gnus-intersection
  4231. ;;             gnus-newsgroup-unreads gnus-newsgroup-marked))))
  4232. ;;    (unselected
  4233. ;;     (- (length gnus-newsgroup-unselected)
  4234. ;;        (length (gnus-intersection
  4235. ;;             gnus-newsgroup-unselected gnus-newsgroup-marked)))))
  4236. ;;    (setq mode-line-buffer-identification
  4237. ;;      (list 17
  4238. ;;        (format "GNUS: %s{%d} %s"
  4239. ;;            gnus-newsgroup-name
  4240. ;;            gnus-current-article
  4241. ;;            ;; This is proposed by tale@pawl.rpi.edu.
  4242. ;;            (cond ((and (zerop unmarked)
  4243. ;;                    (zerop unselected))
  4244. ;;                   "      ")
  4245. ;;                  ((zerop unselected)
  4246. ;;                   (format "%d more" unmarked))
  4247. ;;                  (t
  4248. ;;                   (format "%d(+%d) more" unmarked unselected)))
  4249. ;;            ))))
  4250. ;;  (set-buffer-modified-p t))
  4251.  
  4252. ;; New implementation in gnus 3.14.3
  4253.  
  4254. (defun gnus-article-set-mode-line ()
  4255.   "Set Article mode line string.
  4256. If you don't like it, define your own gnus-article-set-mode-line."
  4257.   (let ((maxlen 15)            ;Maximum subject length
  4258.     (subject
  4259.      (if gnus-current-headers
  4260.          (nntp-header-subject gnus-current-headers) "")))
  4261.     ;; The value must be a string to escape %-constructs because of subject.
  4262.     (setq mode-line-buffer-identification
  4263.       (format "GNUS: %s%s %s%s%s"
  4264.           gnus-newsgroup-name
  4265.           (if gnus-current-article
  4266.               (format "/%d" gnus-current-article) "")
  4267.           (substring subject 0 (min (length subject) maxlen))
  4268.           (if (> (length subject) maxlen) "..." "")
  4269.           (make-string (max 0 (- 17 (length subject))) ? )
  4270.           )))
  4271.   (set-buffer-modified-p t))
  4272.  
  4273. (defun gnus-article-delete-headers ()
  4274.   "Delete unnecessary headers."
  4275.   (save-excursion
  4276.     (save-restriction
  4277.       (goto-char (point-min))
  4278.       (narrow-to-region (point-min)
  4279.             (progn (search-forward "\n\n" nil 'move) (point)))
  4280.       (goto-char (point-min))
  4281.       (and (stringp gnus-ignored-headers)
  4282.        (while (re-search-forward gnus-ignored-headers nil t)
  4283.          (beginning-of-line)
  4284.          (delete-region (point)
  4285.                 (progn (re-search-forward "\n[^ \t]")
  4286.                    (forward-char -1)
  4287.                    (point)))))
  4288.       )))
  4289.  
  4290. ;; Working on article's buffer
  4291.  
  4292. (defun gnus-article-next-page (lines)
  4293.   "Show next page of current article.
  4294. If end of article, return non-nil. Otherwise return nil.
  4295. Argument LINES specifies lines to be scrolled up."
  4296.   (interactive "P")
  4297.   (move-to-window-line -1)
  4298.   ;; Fixed by enami@ptgd.sony.co.jp (enami tsugutomo)
  4299.   (if (save-excursion
  4300.     (end-of-line)
  4301.     (and (pos-visible-in-window-p)    ;Not continuation line.
  4302.          (eobp)))
  4303.       ;; Nothing in this page.
  4304.       (if (or (not gnus-break-pages)
  4305.           (save-excursion
  4306.         (save-restriction
  4307.           (widen) (forward-line 1) (eobp)))) ;Real end-of-buffer?
  4308.       t                ;Nothing more.
  4309.     (gnus-narrow-to-page 1)        ;Go to next page.
  4310.     nil
  4311.     )
  4312.     ;; More in this page.
  4313.     (condition-case ()
  4314.     (scroll-up lines)
  4315.       (end-of-buffer
  4316.        ;; Long lines may cause an end-of-buffer error.
  4317.        (goto-char (point-max))))
  4318.     nil
  4319.     ))
  4320.  
  4321. (defun gnus-article-prev-page (lines)
  4322.   "Show previous page of current article.
  4323. Argument LINES specifies lines to be scrolled down."
  4324.   (interactive "P")
  4325.   (move-to-window-line 0)
  4326.   (if (and gnus-break-pages
  4327.        (bobp)
  4328.        (not (save-restriction (widen) (bobp)))) ;Real beginning-of-buffer?
  4329.       (progn
  4330.     (gnus-narrow-to-page -1) ;Go to previous page.
  4331.     (goto-char (point-max))
  4332.     (recenter -1))
  4333.     (scroll-down lines)))
  4334.  
  4335. (defun gnus-article-next-digest (nth)
  4336.   "Move to head of NTH next digested message.
  4337. Set mark at end of digested message."
  4338.   ;; Stop page breaking in digest mode.
  4339.   (widen)
  4340.   (end-of-line)
  4341.   ;; Skip NTH - 1 digest.
  4342.   ;; Suggested by Khalid Sattar <admin@cs.exeter.ac.uk>.
  4343.   ;; Digest separator is customizable.
  4344.   ;; Suggested by Skip Montanaro <montanaro@sprite.crd.ge.com>.
  4345.   (while (and (> nth 1)
  4346.           (re-search-forward gnus-digest-separator nil 'move))
  4347.     (setq nth (1- nth)))
  4348.   (if (re-search-forward gnus-digest-separator nil t)
  4349.       (let ((begin (point)))
  4350.     ;; Search for end of this message.
  4351.     (end-of-line)
  4352.     (if (re-search-forward gnus-digest-separator nil t)
  4353.         (progn
  4354.           (search-backward "\n\n")    ;This may be incorrect.
  4355.           (forward-line 1))
  4356.       (goto-char (point-max)))
  4357.     (push-mark)            ;Set mark at end of digested message.
  4358.     (goto-char begin)
  4359.     (beginning-of-line)
  4360.     ;; Show From: and Subject: fields.
  4361.     (recenter 1))
  4362.     (message "End of message")
  4363.     ))
  4364.  
  4365. (defun gnus-article-prev-digest (nth)
  4366.   "Move to head of NTH previous digested message."
  4367.   ;; Stop page breaking in digest mode.
  4368.   (widen)
  4369.   (beginning-of-line)
  4370.   ;; Skip NTH - 1 digest.
  4371.   ;; Suggested by Khalid Sattar <admin@cs.exeter.ac.uk>.
  4372.   ;; Digest separator is customizable.
  4373.   ;; Suggested by Skip Montanaro <montanaro@sprite.crd.ge.com>.
  4374.   (while (and (> nth 1)
  4375.           (re-search-backward gnus-digest-separator nil 'move))
  4376.     (setq nth (1- nth)))
  4377.   (if (re-search-backward gnus-digest-separator nil t)
  4378.       (let ((begin (point)))
  4379.     ;; Search for end of this message.
  4380.     (end-of-line)
  4381.     (if (re-search-forward gnus-digest-separator nil t)
  4382.         (progn
  4383.           (search-backward "\n\n")    ;This may be incorrect.
  4384.           (forward-line 1))
  4385.       (goto-char (point-max)))
  4386.     (push-mark)            ;Set mark at end of digested message.
  4387.     (goto-char begin)
  4388.     ;; Show From: and Subject: fields.
  4389.     (recenter 1))
  4390.     (goto-char (point-min))
  4391.     (message "Top of message")
  4392.     ))
  4393.  
  4394. (defun gnus-article-refer-article ()
  4395.   "Read article specified by message-id around point."
  4396.   (interactive)
  4397.   (save-window-excursion
  4398.     (save-excursion
  4399.       (re-search-forward ">" nil t)    ;Move point to end of "<....>".
  4400.       (if (re-search-backward "\\(<[^<> \t\n]+>\\)" nil t)
  4401.       (let ((message-id
  4402.          (buffer-substring (match-beginning 1) (match-end 1))))
  4403.         (set-buffer gnus-summary-buffer)
  4404.         (gnus-summary-refer-article message-id))
  4405.     (error "No references around point"))
  4406.       )))
  4407.  
  4408. (defun gnus-article-pop-article ()
  4409.   "Pop up article history."
  4410.   (interactive)
  4411.   (save-window-excursion
  4412.     (set-buffer gnus-summary-buffer)
  4413.     (gnus-summary-refer-article nil)))
  4414.  
  4415. (defun gnus-article-show-summary ()
  4416.   "Reconfigure windows to show Summary buffer."
  4417.   (interactive)
  4418.   (gnus-configure-windows 'article)
  4419.   (pop-to-buffer gnus-summary-buffer)
  4420.   (gnus-summary-goto-subject gnus-current-article))
  4421.  
  4422. (defun gnus-article-describe-briefly ()
  4423.   "Describe Article mode commands briefly."
  4424.   (interactive)
  4425.   (message
  4426.    (concat
  4427.     (substitute-command-keys "\\[gnus-article-next-page]:Next page  ")
  4428.     (substitute-command-keys "\\[gnus-article-prev-page]:Prev page  ")
  4429.     (substitute-command-keys "\\[gnus-article-show-summary]:Show Summary  ")
  4430.     (substitute-command-keys "\\[gnus-info-find-node]:Run Info  ")
  4431.     (substitute-command-keys "\\[gnus-article-describe-briefly]:This help")
  4432.     )))
  4433.  
  4434.  
  4435. ;;;
  4436. ;;; GNUS KILL-File Mode
  4437. ;;;
  4438.  
  4439. (if gnus-kill-file-mode-map
  4440.     nil
  4441.   (setq gnus-kill-file-mode-map (copy-keymap emacs-lisp-mode-map))
  4442.   (define-key gnus-kill-file-mode-map "\C-c\C-k\C-s" 'gnus-kill-file-kill-by-subject)
  4443.   (define-key gnus-kill-file-mode-map "\C-c\C-k\C-a" 'gnus-kill-file-kill-by-author)
  4444.   (define-key gnus-kill-file-mode-map "\C-c\C-a" 'gnus-kill-file-apply-buffer)
  4445.   (define-key gnus-kill-file-mode-map "\C-c\C-e" 'gnus-kill-file-apply-last-sexp)
  4446.   (define-key gnus-kill-file-mode-map "\C-c\C-c" 'gnus-kill-file-exit)
  4447.   (define-key gnus-kill-file-mode-map "\C-c\C-i" 'gnus-info-find-node))
  4448.  
  4449. (defun gnus-kill-file-mode ()
  4450.   "Major mode for editing KILL file.
  4451.  
  4452. In addition to Emacs-Lisp Mode, the following commands are available:
  4453.  
  4454. \\[gnus-kill-file-kill-by-subject]    Insert KILL command for current subject.
  4455. \\[gnus-kill-file-kill-by-author]    Insert KILL command for current author.
  4456. \\[gnus-kill-file-apply-buffer]    Apply current buffer to selected newsgroup.
  4457. \\[gnus-kill-file-apply-last-sexp]    Apply sexp before point to selected newsgroup.
  4458. \\[gnus-kill-file-exit]    Save file and exit editing KILL file.
  4459. \\[gnus-info-find-node]    Read Info about KILL file.
  4460.  
  4461.   A KILL file contains lisp expressions to be applied to a selected
  4462. newsgroup. The purpose is to mark articles as read on the basis of
  4463. some set of regexps. A global KILL file is applied to every newsgroup,
  4464. and a local KILL file is applied to a specified newsgroup. Since a
  4465. global KILL file is applied to every newsgroup, for better performance
  4466. use a local one.
  4467.  
  4468.   A KILL file can contain any kind of Emacs lisp expressions expected
  4469. to be evaluated in the Summary buffer. Writing lisp programs for this
  4470. purpose is not so easy because the internal working of GNUS must be
  4471. well-known. For this reason, GNUS provides a general function which
  4472. does this easily for non-Lisp programmers.
  4473.  
  4474.   The `gnus-kill' function executes commands available in Summary Mode
  4475. by their key sequences. `gnus-kill' should be called with FIELD,
  4476. REGEXP and optional COMMAND and ALL. FIELD is a string representing
  4477. the header field or an empty string. If FIELD is an empty string, the
  4478. entire article body is searched for. REGEXP is a string which is
  4479. compared with FIELD value. COMMAND is a string representing a valid
  4480. key sequence in Summary Mode or Lisp expression. COMMAND is default to
  4481. '(gnus-summary-mark-as-read nil \"X\"). Make sure that COMMAND is
  4482. executed in the Summary buffer.  If the second optional argument ALL
  4483. is non-nil, the COMMAND is applied to articles which are already
  4484. marked as read or unread.  Articles which are marked are skipped over
  4485. by default.
  4486.  
  4487.   For example, if you want to mark articles of which subjects contain
  4488. the string `AI' as read, a possible KILL file may look like:
  4489.  
  4490.     (gnus-kill \"Subject\" \"AI\")
  4491.  
  4492.   If you want to mark articles with `D' instead of `X', you can use
  4493. the following expression:
  4494.  
  4495.     (gnus-kill \"Subject\" \"AI\" \"d\")
  4496.  
  4497. In this example it is assumed that the command
  4498. `gnus-summary-mark-as-read-forward' is assigned to `d' in Summary Mode.
  4499.  
  4500.   It is possible to delete unnecessary headers which are marked with
  4501. `X' in a KILL file as follows:
  4502.  
  4503.     (gnus-expunge \"X\")
  4504.  
  4505.   If the Summary buffer is empty after applying KILL files, GNUS will
  4506. exit the selected newsgroup normally.  If headers which are marked
  4507. with `D' are deleted in a KILL file, it is impossible to read articles
  4508. which are marked as read in the previous GNUS sessions.  Marks other
  4509. than `D' should be used for articles which should really be deleted.
  4510.  
  4511. Entry to this mode calls emacs-lisp-mode-hook and
  4512. gnus-kill-file-mode-hook with no arguments, if that value is non-nil."
  4513.   (interactive)
  4514.   (kill-all-local-variables)
  4515.   (use-local-map gnus-kill-file-mode-map)
  4516.   (set-syntax-table emacs-lisp-mode-syntax-table)
  4517.   (setq major-mode 'gnus-kill-file-mode)
  4518.   (setq mode-name "KILL-File")
  4519.   (lisp-mode-variables nil)
  4520.   (run-hooks 'emacs-lisp-mode-hook 'gnus-kill-file-mode-hook))
  4521.  
  4522. (defun gnus-kill-file-edit-file (newsgroup)
  4523.   "Begin editing a KILL file of NEWSGROUP.
  4524. If NEWSGROUP is nil, the global KILL file is selected."
  4525.   (interactive "sNewsgroup: ")
  4526.   (let ((file (gnus-newsgroup-kill-file newsgroup)))
  4527.     (gnus-make-directory (file-name-directory file))
  4528.     ;; Save current window configuration if this is first invocation.
  4529.     (or (and (get-file-buffer file)
  4530.          (get-buffer-window (get-file-buffer file)))
  4531.     (setq gnus-winconf-kill-file (current-window-configuration)))
  4532.     ;; Hack windows.
  4533.     (let ((buffer (find-file-noselect file)))
  4534.       (cond ((get-buffer-window buffer)
  4535.          (pop-to-buffer buffer))
  4536.         ((eq major-mode 'gnus-group-mode)
  4537.          (gnus-configure-windows '(1 0 0)) ;Take all windows.
  4538.          (pop-to-buffer gnus-group-buffer)
  4539.          (let ((gnus-summary-buffer buffer))
  4540.            (gnus-configure-windows '(1 1 0)) ;Split into two.
  4541.            (pop-to-buffer buffer)))
  4542.         ((eq major-mode 'gnus-summary-mode)
  4543.          (gnus-configure-windows 'article)
  4544.          (pop-to-buffer gnus-article-buffer)
  4545.          (bury-buffer gnus-article-buffer)
  4546.          (switch-to-buffer buffer))
  4547.         (t                ;No good rules.
  4548.          (find-file-other-window file))
  4549.         ))
  4550.     (gnus-kill-file-mode)
  4551.     ))
  4552.  
  4553. (defun gnus-kill-file-kill-by-subject ()
  4554.   "Insert KILL command for current subject."
  4555.   (interactive)
  4556.   (insert
  4557.    (format "(gnus-kill \"Subject\" %s)\n"
  4558.        (prin1-to-string
  4559.         (if gnus-current-kill-article
  4560.         (regexp-quote
  4561.          (nntp-header-subject
  4562.           ;; No need to speed up this command.
  4563.           ;;(gnus-get-header-by-number gnus-current-kill-article)
  4564.           (gnus-find-header-by-number gnus-newsgroup-headers
  4565.                           gnus-current-kill-article)))
  4566.           "")))))
  4567.  
  4568. (defun gnus-kill-file-kill-by-author ()
  4569.   "Insert KILL command for current author."
  4570.   (interactive)
  4571.   (insert
  4572.    (format "(gnus-kill \"From\" %s)\n"
  4573.        (prin1-to-string
  4574.         (if gnus-current-kill-article
  4575.         (regexp-quote
  4576.          (nntp-header-from
  4577.           ;; No need to speed up this command.
  4578.           ;;(gnus-get-header-by-number gnus-current-kill-article)
  4579.           (gnus-find-header-by-number gnus-newsgroup-headers
  4580.                           gnus-current-kill-article)))
  4581.           "")))))
  4582.  
  4583. (defun gnus-kill-file-apply-buffer ()
  4584.   "Apply current buffer to current newsgroup."
  4585.   (interactive)
  4586.   (if (and gnus-current-kill-article
  4587.        (get-buffer gnus-summary-buffer))
  4588.       ;; Assume newsgroup is selected.
  4589.       (let ((string (concat "(progn \n" (buffer-string) "\n)" )))
  4590.     (save-excursion
  4591.       (save-window-excursion
  4592.         (pop-to-buffer gnus-summary-buffer)
  4593.         (eval (car (read-from-string string))))))
  4594.     (ding) (message "No newsgroup is selected.")))
  4595.  
  4596. (defun gnus-kill-file-apply-last-sexp ()
  4597.   "Apply sexp before point in current buffer to current newsgroup."
  4598.   (interactive)
  4599.   (if (and gnus-current-kill-article
  4600.        (get-buffer gnus-summary-buffer))
  4601.       ;; Assume newsgroup is selected.
  4602.       (let ((string
  4603.          (buffer-substring
  4604.           (save-excursion (forward-sexp -1) (point)) (point))))
  4605.     (save-excursion
  4606.       (save-window-excursion
  4607.         (pop-to-buffer gnus-summary-buffer)
  4608.         (eval (car (read-from-string string))))))
  4609.     (ding) (message "No newsgroup is selected.")))
  4610.  
  4611. (defun gnus-kill-file-exit ()
  4612.   "Save a KILL file, then return to the previous buffer."
  4613.   (interactive)
  4614.   (save-buffer)
  4615.   (let ((killbuf (current-buffer)))
  4616.     ;; We don't want to return to Article buffer.
  4617.     (and (get-buffer gnus-article-buffer)
  4618.      (bury-buffer (get-buffer gnus-article-buffer)))
  4619.     ;; Delete the KILL file windows.
  4620.     (delete-windows-on killbuf)
  4621.     ;; Restore last window configuration if available.
  4622.     (and gnus-winconf-kill-file
  4623.      (set-window-configuration gnus-winconf-kill-file))
  4624.     (setq gnus-winconf-kill-file nil)
  4625.     ;; Kill the KILL file buffer.  Suggested by tale@pawl.rpi.edu.
  4626.     (kill-buffer killbuf)))
  4627.  
  4628.  
  4629. ;;;
  4630. ;;; Utility functions
  4631. ;;;
  4632.  
  4633. ;; Basic ideas by emv@math.lsa.umich.edu (Edward Vielmetti)
  4634.  
  4635. (defun gnus-batch-kill ()
  4636.   "Run batched KILL.
  4637. Usage: emacs -batch -l gnus -f gnus-batch-kill NEWSGROUP ..."
  4638.   (if (not noninteractive)
  4639.       (error "gnus-batch-kill is to be used only with -batch"))
  4640.   (let* ((group nil)
  4641.      (subscribed nil)
  4642.      (newsrc nil)
  4643.      (yes-and-no
  4644.       (gnus-parse-n-options
  4645.        (apply (function concat)
  4646.           (mapcar (function (lambda (g) (concat g " ")))
  4647.               command-line-args-left))))
  4648.      (yes (car yes-and-no))
  4649.      (no  (cdr yes-and-no))
  4650.      ;; Disable verbose message.
  4651.      (gnus-novice-user nil)
  4652.      (gnus-large-newsgroup nil)
  4653.      (nntp-large-newsgroup nil))
  4654.     ;; Eat all arguments.
  4655.     (setq command-line-args-left nil)
  4656.     ;; Startup GNUS.
  4657.     (gnus)
  4658.     ;; Apply kills to specified newsgroups in command line arguments.
  4659.     (setq newsrc (copy-sequence gnus-newsrc-assoc))
  4660.     (while newsrc
  4661.       (setq group (car (car newsrc)))
  4662.       (setq subscribed (nth 1 (car newsrc)))
  4663.       (setq newsrc (cdr newsrc))
  4664.       (if (and subscribed
  4665.            (not (zerop (nth 1 (gnus-gethash group gnus-unread-hashtb))))
  4666.            (if yes
  4667.            (string-match yes group) t)
  4668.            (or (null no)
  4669.            (not (string-match no group))))
  4670.       (progn
  4671.         (gnus-summary-read-group group nil t)
  4672.         (if (eq (current-buffer) (get-buffer gnus-summary-buffer))
  4673.         (gnus-summary-exit t))
  4674.         ))
  4675.       )
  4676.     ;; Finally, exit Emacs.
  4677.     (set-buffer gnus-group-buffer)
  4678.     (gnus-group-exit)
  4679.     ))
  4680.  
  4681. ;; For saving articles
  4682.  
  4683. (defun gnus-Numeric-save-name (newsgroup headers &optional last-file)
  4684.   "Generate file name from NEWSGROUP, HEADERS, and optional LAST-FILE.
  4685. If variable `gnus-use-long-file-name' is nil, it is ~/News/News.group/num.
  4686. Otherwise, it is like ~/News/news/group/num."
  4687.   (let ((default
  4688.       (expand-file-name
  4689.        (concat (if gnus-use-long-file-name
  4690.                (gnus-capitalize-newsgroup newsgroup)
  4691.              (gnus-newsgroup-directory-form newsgroup))
  4692.            "/" (int-to-string (nntp-header-number headers)))
  4693.        (or gnus-article-save-directory "~/News"))))
  4694.     (if (and last-file
  4695.          (string-equal (file-name-directory default)
  4696.                (file-name-directory last-file))
  4697.          (string-match "^[0-9]+$" (file-name-nondirectory last-file)))
  4698.     default
  4699.       (or last-file default))))
  4700.  
  4701. (defun gnus-numeric-save-name (newsgroup headers &optional last-file)
  4702.   "Generate file name from NEWSGROUP, HEADERS, and optional LAST-FILE.
  4703. If variable `gnus-use-long-file-name' is nil, it is ~/News/news.group/num.
  4704. Otherwise, it is like ~/News/news/group/num."
  4705.   (let ((default
  4706.       (expand-file-name
  4707.        (concat (if gnus-use-long-file-name
  4708.                newsgroup
  4709.              (gnus-newsgroup-directory-form newsgroup))
  4710.            "/" (int-to-string (nntp-header-number headers)))
  4711.        (or gnus-article-save-directory "~/News"))))
  4712.     (if (and last-file
  4713.          (string-equal (file-name-directory default)
  4714.                (file-name-directory last-file))
  4715.          (string-match "^[0-9]+$" (file-name-nondirectory last-file)))
  4716.     default
  4717.       (or last-file default))))
  4718.  
  4719. (defun gnus-Plain-save-name (newsgroup headers &optional last-file)
  4720.   "Generate file name from NEWSGROUP, HEADERS, and optional LAST-FILE.
  4721. If variable `gnus-use-long-file-name' is nil, it is ~/News/News.group.
  4722. Otherwise, it is like ~/News/news/group/news."
  4723.   (or last-file
  4724.       (expand-file-name
  4725.        (if gnus-use-long-file-name
  4726.        (gnus-capitalize-newsgroup newsgroup)
  4727.      (concat (gnus-newsgroup-directory-form newsgroup) "/news"))
  4728.        (or gnus-article-save-directory "~/News"))))
  4729.  
  4730. (defun gnus-plain-save-name (newsgroup headers &optional last-file)
  4731.   "Generate file name from NEWSGROUP, HEADERS, and optional LAST-FILE.
  4732. If variable `gnus-use-long-file-name' is nil, it is ~/News/news.group.
  4733. Otherwise, it is like ~/News/news/group/news."
  4734.   (or last-file
  4735.       (expand-file-name
  4736.        (if gnus-use-long-file-name
  4737.        newsgroup
  4738.      (concat (gnus-newsgroup-directory-form newsgroup) "/news"))
  4739.        (or gnus-article-save-directory "~/News"))))
  4740.  
  4741. (defun gnus-Folder-save-name (newsgroup headers &optional last-folder)
  4742.   "Generate folder name from NEWSGROUP, HEADERS, and optional LAST-FOLDER.
  4743. If variable `gnus-use-long-file-name' is nil, it is +News.group.
  4744. Otherwise, it is like +news/group."
  4745.   (or last-folder
  4746.       (concat "+"
  4747.           (if gnus-use-long-file-name
  4748.           (gnus-capitalize-newsgroup newsgroup)
  4749.         (gnus-newsgroup-directory-form newsgroup)))))
  4750.  
  4751. (defun gnus-folder-save-name (newsgroup headers &optional last-folder)
  4752.   "Generate folder name from NEWSGROUP, HEADERS, and optional LAST-FOLDER.
  4753. If variable `gnus-use-long-file-name' is nil, it is +news.group.
  4754. Otherwise, it is like +news/group."
  4755.   (or last-folder
  4756.       (concat "+"
  4757.           (if gnus-use-long-file-name
  4758.           newsgroup
  4759.         (gnus-newsgroup-directory-form newsgroup)))))
  4760.  
  4761. ;; For KILL files
  4762.  
  4763. (defun gnus-apply-kill-file ()
  4764.   "Apply KILL file to the current newsgroup."
  4765.   ;; Apply the global KILL file.
  4766.   (load (gnus-newsgroup-kill-file nil) t nil t)
  4767.   ;; And then apply the local KILL file.
  4768.   (load (gnus-newsgroup-kill-file gnus-newsgroup-name) t nil t))
  4769.  
  4770. (defun gnus-Newsgroup-kill-file (newsgroup)
  4771.   "Return the name of a KILL file of NEWSGROUP.
  4772. If NEWSGROUP is nil, return the global KILL file instead."
  4773.   (cond ((or (null newsgroup)
  4774.          (string-equal newsgroup ""))
  4775.      ;; The global KILL file is placed at top of the directory.
  4776.      (expand-file-name gnus-kill-file-name
  4777.                (or gnus-article-save-directory "~/News")))
  4778.     (gnus-use-long-file-name
  4779.      ;; Append ".KILL" to capitalized newsgroup name.
  4780.      (expand-file-name (concat (gnus-capitalize-newsgroup newsgroup)
  4781.                    "." gnus-kill-file-name)
  4782.                (or gnus-article-save-directory "~/News")))
  4783.     (t
  4784.      ;; Place "KILL" under the hierarchical directory.
  4785.      (expand-file-name (concat (gnus-newsgroup-directory-form newsgroup)
  4786.                    "/" gnus-kill-file-name)
  4787.                (or gnus-article-save-directory "~/News")))
  4788.     ))
  4789.  
  4790. (defun gnus-newsgroup-kill-file (newsgroup)
  4791.   "Return the name of a KILL file of NEWSGROUP.
  4792. If NEWSGROUP is nil, return the global KILL file instead."
  4793.   (cond ((or (null newsgroup)
  4794.          (string-equal newsgroup ""))
  4795.      ;; The global KILL file is placed at top of the directory.
  4796.      (expand-file-name gnus-kill-file-name
  4797.                (or gnus-article-save-directory "~/News")))
  4798.     (gnus-use-long-file-name
  4799.      ;; Append ".KILL" to newsgroup name.
  4800.      (expand-file-name (concat newsgroup "." gnus-kill-file-name)
  4801.                (or gnus-article-save-directory "~/News")))
  4802.     (t
  4803.      ;; Place "KILL" under the hierarchical directory.
  4804.      (expand-file-name (concat (gnus-newsgroup-directory-form newsgroup)
  4805.                    "/" gnus-kill-file-name)
  4806.                (or gnus-article-save-directory "~/News")))
  4807.     ))
  4808.  
  4809. ;; For subscribing new newsgroup
  4810.  
  4811. (defun gnus-subscribe-randomly (newsgroup)
  4812.   "Subscribe new NEWSGROUP and insert it at the beginning of newsgroups."
  4813.   (gnus-subscribe-newsgroup newsgroup
  4814.                 (car (car gnus-newsrc-assoc))))
  4815.  
  4816. (defun gnus-subscribe-alphabetically (newgroup)
  4817.   "Subscribe new NEWSGROUP and insert it in strict alphabetic order."
  4818.   ;; Basic ideas by mike-w@cs.aukuni.ac.nz (Mike Williams)
  4819.   (let ((groups gnus-newsrc-assoc)
  4820.     (before nil))
  4821.     (while (and (not before) groups)
  4822.       (if (string< newgroup (car (car groups)))
  4823.       (setq before (car (car groups)))
  4824.     (setq groups (cdr groups))))
  4825.     (gnus-subscribe-newsgroup newgroup before)
  4826.     ))
  4827.  
  4828. (defun gnus-subscribe-hierarchically (newgroup)
  4829.   "Subscribe new NEWSGROUP and insert it in hierarchical newsgroup order."
  4830.   ;; Basic ideas by mike-w@cs.aukuni.ac.nz (Mike Williams)
  4831.   (save-excursion
  4832.     (set-buffer (find-file-noselect gnus-current-startup-file))
  4833.     (let ((groupkey newgroup)
  4834.       (before nil))
  4835.       (while (and (not before) groupkey)
  4836.     (goto-char (point-min))
  4837.     (let ((groupkey-re
  4838.            (concat "^\\(" (regexp-quote groupkey) ".*\\)[!:]")))
  4839.       (while (and (re-search-forward groupkey-re nil t)
  4840.               (progn
  4841.             (setq before (buffer-substring
  4842.                       (match-beginning 1) (match-end 1)))
  4843.             (string< before newgroup)))
  4844.         ))
  4845.     ;; Remove tail of newsgroup name (eg. a.b.c -> a.b)
  4846.     (setq groupkey
  4847.           (if (string-match "^\\(.*\\)\\.[^.]+$" groupkey)
  4848.           (substring groupkey (match-beginning 1) (match-end 1)))))
  4849.       (gnus-subscribe-newsgroup newgroup before)
  4850.       )))
  4851.  
  4852. (defun gnus-subscribe-interactively (newsgroup)
  4853.   "Subscribe new NEWSGROUP interactively.
  4854. It is inserted in hierarchical newsgroup order if subscribed.
  4855. Unless, it is killed."
  4856.   (if (y-or-n-p (format "Subscribe new newsgroup: %s " newsgroup))
  4857.       (gnus-subscribe-hierarchically newsgroup)
  4858.     ;; Save in kill-ring
  4859.     (gnus-subscribe-newsgroup newsgroup)
  4860.     (gnus-kill-newsgroup newsgroup)))
  4861.  
  4862. (defun gnus-subscribe-newsgroup (newsgroup &optional next)
  4863.   "Subscribe new NEWSGROUP.
  4864. If optional argument NEXT is non-nil, it is inserted before NEXT."
  4865.   (gnus-insert-newsgroup (list newsgroup t) next)
  4866.   (message "Subscribe newsgroup: %s" newsgroup))
  4867.  
  4868. ;; For directories
  4869.  
  4870. (defun gnus-newsgroup-directory-form (newsgroup)
  4871.   "Make hierarchical directory name from NEWSGROUP name."
  4872.   (let ((newsgroup (substring newsgroup 0)) ;Copy string.
  4873.     (len (length newsgroup))
  4874.     (idx 0))
  4875.     ;; Replace all occurrences of `.' with `/'.
  4876.     (while (< idx len)
  4877.       (if (= (aref newsgroup idx) ?.)
  4878.       (aset newsgroup idx ?/))
  4879.       (setq idx (1+ idx)))
  4880.     newsgroup
  4881.     ))
  4882.  
  4883. (defun gnus-make-directory (directory)
  4884.   "Make DIRECTORY recursively."
  4885.   (let ((directory (expand-file-name directory default-directory)))
  4886.     (or (file-exists-p directory)
  4887.     (gnus-make-directory-1 "" directory))
  4888.     ))
  4889.  
  4890. (defun gnus-make-directory-1 (head tail)
  4891.   (cond ((string-match "^/\\([^/]+\\)" tail)
  4892.      ;; ange-ftp interferes with calling match-* after
  4893.      ;; calling file-name-as-directory.
  4894.      (let ((beg (match-beginning 1))
  4895.            (end (match-end 1)))
  4896.        (setq head (concat (file-name-as-directory head)
  4897.                   (substring tail beg end)))
  4898.        (or (file-exists-p head)
  4899.            (call-process "mkdir" nil nil nil head))
  4900.        (gnus-make-directory-1 head (substring tail end))))
  4901.     ((string-equal tail "") t)
  4902.     ))
  4903.  
  4904. (defun gnus-capitalize-newsgroup (newsgroup)
  4905.   "Capitalize NEWSGROUP name with treating '.' and '-' as part of words."
  4906.   ;; Suggested by "Jonathan I. Kamens" <jik@pit-manager.MIT.EDU>.
  4907.   (let ((current-syntax-table (copy-syntax-table (syntax-table))))
  4908.     (unwind-protect
  4909.     (progn
  4910.       (modify-syntax-entry ?- "w")
  4911.       (modify-syntax-entry ?. "w")
  4912.       (capitalize newsgroup))
  4913.       (set-syntax-table current-syntax-table))))
  4914.  
  4915. (defun gnus-simplify-subject (subject &optional re-only)
  4916.   "Remove `Re:' and words in parentheses.
  4917. If optional argument RE-ONLY is non-nil, strip `Re:' only."
  4918.   (let ((case-fold-search t))        ;Ignore case.
  4919.     ;; Remove `Re:' and `Re^N:'.
  4920.     (if (string-match "\\`\\(re\\(\\^[0-9]+\\)?:[ \t]+\\)+" subject)
  4921.     (setq subject (substring subject (match-end 0))))
  4922.     ;; Remove words in parentheses from end.
  4923.     (or re-only
  4924.     (while (string-match "[ \t\n]*([^()]*)[ \t\n]*\\'" subject)
  4925.       (setq subject (substring subject 0 (match-beginning 0)))))
  4926.     ;; Return subject string.
  4927.     subject
  4928.     ))
  4929.  
  4930. (defun gnus-optional-lines-and-from (header)
  4931.   "Return a string like `NNN:AUTHOR' from HEADER."
  4932.   (let ((name-length (length "umerin@photon")))
  4933.     (substring (format "%3d:%s"
  4934.                ;; Lines of the article.
  4935.                ;; Suggested by dana@bellcore.com.
  4936.                (nntp-header-lines header)
  4937.                ;; Its author.
  4938.                (concat (mail-strip-quoted-names
  4939.                 (nntp-header-from header))
  4940.                    (make-string name-length ? )))
  4941.            ;; 4 stands for length of `NNN:'.
  4942.            0 (+ 4 name-length))))
  4943.  
  4944. (defun gnus-optional-lines (header)
  4945.   "Return a string like `NNN' from HEADER."
  4946.   (format "%4d" (nntp-header-lines header)))
  4947.  
  4948. ;; Basic ideas by flee@cs.psu.edu (Felix Lee)
  4949.  
  4950. (defun gnus-keysort-headers (predicate key &optional reverse)
  4951.   "Sort current headers by PREDICATE using a value passed by KEY safely.
  4952. *Safely* means C-g quitting is disabled during sort.
  4953. Optional argument REVERSE means reverse order."
  4954.   (let ((inhibit-quit t))
  4955.     (setq gnus-newsgroup-headers
  4956.       (if reverse
  4957.           (nreverse
  4958.            (gnus-keysort (nreverse gnus-newsgroup-headers) predicate key))
  4959.         (gnus-keysort gnus-newsgroup-headers predicate key)))
  4960.     ;; Make sure we don't have to call
  4961.     ;; gnus-clear-hashtables-for-newsgroup-headers to clear hash
  4962.     ;; tables for the variable gnus-newsgroup-headers since no new
  4963.     ;; entry is added to nor deleted from the variable.
  4964.     ))
  4965.  
  4966. (defun gnus-keysort (list predicate key)
  4967.   "Sort LIST by PREDICATE using a value passed by KEY."
  4968.   (mapcar (function cdr)
  4969.       (sort (mapcar (function (lambda (a) (cons (funcall key a) a))) list)
  4970.         (function (lambda (a b)
  4971.                 (funcall predicate (car a) (car b)))))))
  4972.  
  4973. (defun gnus-sort-headers (predicate &optional reverse)
  4974.   "Sort current headers by PREDICATE safely.
  4975. *Safely* means C-g quitting is disabled during sort.
  4976. Optional argument REVERSE means reverse order."
  4977.   (let ((inhibit-quit t))
  4978.     (setq gnus-newsgroup-headers
  4979.       (if reverse
  4980.           (nreverse (sort (nreverse gnus-newsgroup-headers) predicate))
  4981.         (sort gnus-newsgroup-headers predicate)))
  4982.     ;; Make sure we don't have to call
  4983.     ;; gnus-clear-hashtables-for-newsgroup-headers to clear hash
  4984.     ;; tables for the variable gnus-newsgroup-headers since no new
  4985.     ;; entry is added to nor deleted from the variable.
  4986.     ))
  4987.  
  4988. (defun gnus-string-lessp (a b)
  4989.   "Return T if first arg string is less than second in lexicographic order.
  4990. If case-fold-search is non-nil, case of letters is ignored."
  4991.   (if case-fold-search
  4992.       (string-lessp (downcase a) (downcase b))
  4993.     (string-lessp a b)))
  4994.  
  4995. (defun gnus-date-lessp (date1 date2)
  4996.   "Return T if DATE1 is earlyer than DATE2."
  4997.   (string-lessp (gnus-sortable-date date1)
  4998.         (gnus-sortable-date date2)))
  4999.  
  5000. (defun gnus-sortable-date (date)
  5001.   "Make sortable string by string-lessp from DATE.
  5002. Timezone package is used."
  5003.   (let* ((date   (timezone-parse-date date)) ;[Y M D T]
  5004.      (year   (string-to-int (aref date 0)))
  5005.      (month  (string-to-int (aref date 1)))
  5006.      (day    (string-to-int (aref date 2)))
  5007.      (time   (aref date 3)))    ;HH:MM:SS
  5008.     ;; Timezone package is used.  But, we don't have to care about
  5009.     ;; the timezone since article's timezones are always GMT.
  5010.     (timezone-make-sortable-date year month day time)
  5011.     ))
  5012.  
  5013. ;;(defun gnus-sortable-date (date)
  5014. ;;  "Make sortable string by string-lessp from DATE."
  5015. ;;  (let ((month '(("JAN" . " 1")("FEB" . " 2")("MAR" . " 3")
  5016. ;;         ("APR" . " 4")("MAY" . " 5")("JUN" . " 6")
  5017. ;;         ("JUL" . " 7")("AUG" . " 8")("SEP" . " 9")
  5018. ;;         ("OCT" . "10")("NOV" . "11")("DEC" . "12")))
  5019. ;;    (date (or date "")))
  5020. ;;    ;; Can understand the following styles:
  5021. ;;    ;; (1) 14 Apr 89 03:20:12 GMT
  5022. ;;    ;; (2) Fri, 17 Mar 89 4:01:33 GMT
  5023. ;;    (if (string-match
  5024. ;;     "\\([0-9]+\\) \\([^ ,]+\\) \\([0-9]+\\) \\([0-9:]+\\)" date)
  5025. ;;    (concat
  5026. ;;     ;; Year
  5027. ;;     (substring date (match-beginning 3) (match-end 3))
  5028. ;;     ;; Month
  5029. ;;     (cdr
  5030. ;;      (assoc
  5031. ;;       (upcase (substring date (match-beginning 2) (match-end 2))) month))
  5032. ;;     ;; Day
  5033. ;;     (format "%2d" (string-to-int
  5034. ;;            (substring date
  5035. ;;                   (match-beginning 1) (match-end 1))))
  5036. ;;     ;; Time
  5037. ;;     (substring date (match-beginning 4) (match-end 4)))
  5038. ;;      ;; Cannot understand DATE string.
  5039. ;;      date
  5040. ;;      )
  5041. ;;    ))
  5042.  
  5043. (defun gnus-fetch-field (field)
  5044.   "Return the value of the header FIELD of current article."
  5045.   (save-excursion
  5046.     (save-restriction
  5047.       (widen)
  5048.       (goto-char (point-min))
  5049.       (narrow-to-region (point-min)
  5050.             (progn (search-forward "\n\n" nil 'move) (point)))
  5051.       (mail-fetch-field field))))
  5052.  
  5053. (fset 'gnus-expunge 'gnus-summary-delete-marked-with)
  5054.  
  5055. (defun gnus-kill (field regexp &optional command all)
  5056.   "If FIELD of an article matches REGEXP, execute COMMAND.
  5057. Optional 1st argument COMMAND is default to
  5058.     (gnus-summary-mark-as-read nil \"X\").
  5059. If optional 2nd argument ALL is non-nil, articles marked are also applied to.
  5060. If FIELD is an empty string (or nil), entire article body is searched for.
  5061. COMMAND must be a lisp expression or a string representing a key sequence."
  5062.   ;; We don't want to change current point nor window configuration.
  5063.   (save-excursion
  5064.     (save-window-excursion
  5065.       ;; Selected window must be Summary buffer to execute keyboard
  5066.       ;; macros correctly. See command_loop_1.
  5067.       (switch-to-buffer gnus-summary-buffer 'norecord)
  5068.       (goto-char (point-min))        ;From the beginning.
  5069.       (if (null command)
  5070.       (setq command '(gnus-summary-mark-as-read nil "X")))
  5071.       (gnus-execute field regexp command nil (not all))
  5072.       )))
  5073.  
  5074. (defun gnus-execute (field regexp form &optional backward ignore-marked)
  5075.   "If FIELD of article header matches REGEXP, execute lisp FORM (or a string).
  5076. If FIELD is an empty string (or nil), entire article body is searched for.
  5077. If optional 1st argument BACKWARD is non-nil, do backward instead.
  5078. If optional 2nd argument IGNORE-MARKED is non-nil, articles which are
  5079. marked as read or unread are ignored."
  5080.   (let ((function nil)
  5081.     (header nil)
  5082.     (article nil))
  5083.     (if (string-equal field "")
  5084.     (setq field nil))
  5085.     (if (null field)
  5086.     nil
  5087.       (or (stringp field)
  5088.       (setq field (symbol-name field)))
  5089.       ;; Get access function of header filed.
  5090.       (setq function (intern-soft (concat "gnus-header-" (downcase field))))
  5091.       (if (and function (fboundp function))
  5092.       (setq function (symbol-function function))
  5093.     (error "Unknown header field: \"%s\"" field)))
  5094.     ;; Make FORM funcallable.
  5095.     (if (and (listp form) (not (eq (car form) 'lambda)))
  5096.     (setq form (list 'lambda nil form)))
  5097.     ;; Starting from the current article.
  5098.     (or (and ignore-marked
  5099.          ;; Articles marked as read and unread should be ignored.
  5100.          (setq article (gnus-summary-article-number))
  5101.          (or (not (memq article gnus-newsgroup-unreads)) ;Marked as read.
  5102.          (memq article gnus-newsgroup-marked) ;Marked as unread.
  5103.          ))
  5104.     (gnus-execute-1 function regexp form))
  5105.     (while (gnus-summary-search-subject backward ignore-marked nil)
  5106.       (gnus-execute-1 function regexp form))
  5107.     ))
  5108.  
  5109. (defun gnus-execute-1 (function regexp form)
  5110.   (save-excursion
  5111.     ;; The point of Summary buffer must be saved during execution.
  5112.     (let ((article (gnus-summary-article-number)))
  5113.       (if (null article)
  5114.       nil                ;Nothing to do.
  5115.     (if function
  5116.         ;; Compare with header field.
  5117.         (let (;;(header (gnus-find-header-by-number
  5118.           ;;        gnus-newsgroup-headers article))
  5119.           (header (gnus-get-header-by-number article))
  5120.           (value nil))
  5121.           (and header
  5122.            (progn
  5123.              (setq value (funcall function header))
  5124.              ;; Number (Lines:) or symbol must be converted to string.
  5125.              (or (stringp value)
  5126.              (setq value (prin1-to-string value)))
  5127.              (string-match regexp value))
  5128.            (if (stringp form)    ;Keyboard macro.
  5129.                (execute-kbd-macro form)
  5130.              (funcall form))))
  5131.       ;; Search article body.
  5132.       (let ((gnus-current-article nil) ;Save article pointer.
  5133.         (gnus-last-article nil)
  5134.         (gnus-break-pages nil)    ;No need to break pages.
  5135.         (gnus-mark-article-hook nil)) ;Inhibit marking as read.
  5136.         (message "Searching for article: %d..." article)
  5137.         (gnus-article-setup-buffer)
  5138.         (gnus-article-prepare article t)
  5139.         (if (save-excursion
  5140.           (set-buffer gnus-article-buffer)
  5141.           (goto-char (point-min))
  5142.           (re-search-forward regexp nil t))
  5143.         (if (stringp form)    ;Keyboard macro.
  5144.             (execute-kbd-macro form)
  5145.           (funcall form))))
  5146.       ))
  5147.       )))
  5148.  
  5149. ;;; caesar-region written by phr@prep.ai.mit.edu  Nov 86
  5150. ;;; modified by tower@prep Nov 86
  5151. ;;; Modified by umerin@flab.flab.Fujitsu.JUNET for ROT47.
  5152.  
  5153. (defun gnus-caesar-region (&optional n)
  5154.   "Caesar rotation of region by N, default 13, for decrypting netnews.
  5155. ROT47 will be performed for Japanese text in any case."
  5156.   (interactive (if current-prefix-arg    ; Was there a prefix arg?
  5157.            (list (prefix-numeric-value current-prefix-arg))
  5158.          (list nil)))
  5159.   (cond ((not (numberp n)) (setq n 13))
  5160.     ((< n 0) (setq n (- 26 (% (- n) 26))))
  5161.     (t (setq n (% n 26))))        ;canonicalize N
  5162.   (if (not (zerop n))        ; no action needed for a rot of 0
  5163.       (progn
  5164.     (if (or (not (boundp 'caesar-translate-table))
  5165.         (/= (aref caesar-translate-table ?a) (+ ?a n)))
  5166.         (let ((i 0) (lower "abcdefghijklmnopqrstuvwxyz") upper)
  5167.           (message "Building caesar-translate-table...")
  5168.           (setq caesar-translate-table (make-vector 256 0))
  5169.           (while (< i 256)
  5170.         (aset caesar-translate-table i i)
  5171.         (setq i (1+ i)))
  5172.           (setq lower (concat lower lower) upper (upcase lower) i 0)
  5173.           (while (< i 26)
  5174.         (aset caesar-translate-table (+ ?a i) (aref lower (+ i n)))
  5175.         (aset caesar-translate-table (+ ?A i) (aref upper (+ i n)))
  5176.         (setq i (1+ i)))
  5177.           ;; ROT47 for Japanese text.
  5178.           ;; Thanks to ichikawa@flab.fujitsu.junet.
  5179.           (setq i 161)
  5180.           (let ((t1 (logior ?O 128))
  5181.             (t2 (logior ?! 128))
  5182.             (t3 (logior ?~ 128)))
  5183.         (while (< i 256)
  5184.           (aset caesar-translate-table i
  5185.             (let ((v (aref caesar-translate-table i)))
  5186.               (if (<= v t1) (if (< v t2) v (+ v 47))
  5187.                 (if (<= v t3) (- v 47) v))))
  5188.           (setq i (1+ i))))
  5189.           (message "Building caesar-translate-table... done")))
  5190.     (let ((from (region-beginning))
  5191.           (to (region-end))
  5192.           (i 0) str len)
  5193.       (setq str (buffer-substring from to))
  5194.       (setq len (length str))
  5195.       (while (< i len)
  5196.         (aset str i (aref caesar-translate-table (aref str i)))
  5197.         (setq i (1+ i)))
  5198.       (goto-char from)
  5199.       (delete-region from to)
  5200.       (insert str)))))
  5201.  
  5202. ;; Functions accessing headers.
  5203. ;; Functions are more convenient than macros in some case.
  5204.  
  5205. (defun gnus-header-number (header)
  5206.   "Return article number in HEADER."
  5207.   (nntp-header-number header))
  5208.  
  5209. (defun gnus-header-subject (header)
  5210.   "Return subject string in HEADER."
  5211.   (nntp-header-subject header))
  5212.  
  5213. (defun gnus-header-from (header)
  5214.   "Return author string in HEADER."
  5215.   (nntp-header-from header))
  5216.  
  5217. (defun gnus-header-xref (header)
  5218.   "Return xref string in HEADER."
  5219.   (nntp-header-xref header))
  5220.  
  5221. (defun gnus-header-lines (header)
  5222.   "Return lines in HEADER."
  5223.   (nntp-header-lines header))
  5224.  
  5225. (defun gnus-header-date (header)
  5226.   "Return date in HEADER."
  5227.   (nntp-header-date header))
  5228.  
  5229. (defun gnus-header-id (header)
  5230.   "Return Id in HEADER."
  5231.   (nntp-header-id header))
  5232.  
  5233. (defun gnus-header-references (header)
  5234.   "Return references in HEADER."
  5235.   (nntp-header-references header))
  5236.  
  5237.  
  5238. ;;;
  5239. ;;; Article savers.
  5240. ;;;
  5241.  
  5242. (defun gnus-output-to-rmail (file-name)
  5243.   "Append the current article to an Rmail file named FILE-NAME."
  5244.   (require 'rmail)
  5245.   ;; Most of these codes are borrowed from rmailout.el.
  5246.   (setq file-name (expand-file-name file-name))
  5247.   (setq rmail-last-rmail-file file-name)
  5248.   (let ((artbuf (current-buffer))
  5249.     (tmpbuf (get-buffer-create " *GNUS-output*")))
  5250.     (save-excursion
  5251.       (or (get-file-buffer file-name)
  5252.       (file-exists-p file-name)
  5253.       (if (yes-or-no-p
  5254.            (concat "\"" file-name "\" does not exist, create it? "))
  5255.           (let ((file-buffer (create-file-buffer file-name)))
  5256.         (save-excursion
  5257.           (set-buffer file-buffer)
  5258.           (rmail-insert-rmail-file-header)
  5259.           (let ((require-final-newline nil))
  5260.             (write-region (point-min) (point-max) file-name t 1)))
  5261.         (kill-buffer file-buffer))
  5262.         (error "Output file does not exist")))
  5263.       (set-buffer tmpbuf)
  5264.       (buffer-flush-undo (current-buffer))
  5265.       (erase-buffer)
  5266.       (insert-buffer-substring artbuf)
  5267.       (gnus-convert-article-to-rmail)
  5268.       ;; Decide whether to append to a file or to an Emacs buffer.
  5269.       (let ((outbuf (get-file-buffer file-name)))
  5270.     (if (not outbuf)
  5271.         (append-to-file (point-min) (point-max) file-name)
  5272.       ;; File has been visited, in buffer OUTBUF.
  5273.       (set-buffer outbuf)
  5274.       (let ((buffer-read-only nil)
  5275.         (msg (and (boundp 'rmail-current-message)
  5276.               rmail-current-message)))
  5277.         ;; If MSG is non-nil, buffer is in RMAIL mode.
  5278.         (if msg
  5279.         (progn (widen)
  5280.                (narrow-to-region (point-max) (point-max))))
  5281.         (insert-buffer-substring tmpbuf)
  5282.         (if msg
  5283.         (progn
  5284.           (goto-char (point-min))
  5285.           (widen)
  5286.           (search-backward "\^_")
  5287.           (narrow-to-region (point) (point-max))
  5288.           (goto-char (1+ (point-min)))
  5289.           (rmail-count-new-messages t)
  5290.           (rmail-show-message msg))))))
  5291.       )
  5292.     (kill-buffer tmpbuf)
  5293.     ))
  5294.  
  5295. (defun gnus-output-to-file (file-name)
  5296.   "Append the current article to a file named FILE-NAME."
  5297.   (setq file-name (expand-file-name file-name))
  5298.   (let ((artbuf (current-buffer))
  5299.     (tmpbuf (get-buffer-create " *GNUS-output*")))
  5300.     (save-excursion
  5301.       (set-buffer tmpbuf)
  5302.       (buffer-flush-undo (current-buffer))
  5303.       (erase-buffer)
  5304.       (insert-buffer-substring artbuf)
  5305.       ;; Append newline at end of the buffer as separator, and then
  5306.       ;; save it to file.
  5307.       (goto-char (point-max))
  5308.       (insert "\n")
  5309.       (append-to-file (point-min) (point-max) file-name))
  5310.     (kill-buffer tmpbuf)
  5311.     ))
  5312.  
  5313. (defun gnus-convert-article-to-rmail ()
  5314.   "Convert article in current buffer to Rmail message format."
  5315.   (let ((buffer-read-only nil))
  5316.     ;; Convert article directly into Babyl format.
  5317.     ;; Suggested by Rob Austein <sra@lcs.mit.edu>
  5318.     (goto-char (point-min))
  5319.     (insert "\^L\n0, unseen,,\n*** EOOH ***\n")
  5320.     (while (search-forward "\n\^_" nil t) ;single char
  5321.       (replace-match "\n^_"))        ;2 chars: "^" and "_"
  5322.     (goto-char (point-max))
  5323.     (insert "\^_")))
  5324.  
  5325. ;;(defun gnus-convert-article-to-rmail ()
  5326. ;;  "Convert article in current buffer to Rmail message format."
  5327. ;;  (let ((buffer-read-only nil))
  5328. ;;    ;; Insert special header of Unix mail.
  5329. ;;    (goto-char (point-min))
  5330. ;;    (insert "From "
  5331. ;;        (or (mail-strip-quoted-names (mail-fetch-field "from"))
  5332. ;;        "unknown")
  5333. ;;        " " (current-time-string) "\n")
  5334. ;;    ;; Stop quoting `From' since this seems unnecessary in most cases.
  5335. ;;    ;; ``Quote'' "\nFrom " as "\n>From "
  5336. ;;    ;;(while (search-forward "\nFrom " nil t)
  5337. ;;    ;;  (forward-char -5)
  5338. ;;    ;;  (insert ?>))
  5339. ;;    ;; Convert article to babyl format.
  5340. ;;    (rmail-convert-to-babyl-format)
  5341. ;;    ))
  5342.  
  5343.  
  5344. ;;;
  5345. ;;; Internal functions.
  5346. ;;;
  5347.  
  5348. (defun gnus-start-news-server (&optional confirm)
  5349.   "Open network stream to remote NNTP server.
  5350. If optional argument CONFIRM is non-nil, ask you host that NNTP server
  5351. is running even if it is defined.
  5352. Run gnus-open-server-hook just before opening news server."
  5353.   (if (gnus-server-opened)
  5354.       ;; Stream is already opened.
  5355.       nil
  5356.     ;; Open NNTP server.
  5357.     (if (or confirm
  5358.         (null gnus-nntp-server))
  5359.     ;; If someone has set the service to nil, then this should always
  5360.     ;; be the local host.
  5361.     (if gnus-nntp-service
  5362.         (if (and (boundp 'gnus-secondary-servers) gnus-secondary-servers)
  5363.         ;; Read server name with completion.
  5364.         (setq gnus-nntp-server
  5365.               (completing-read "NNTP server: "
  5366.                        (cons (list gnus-nntp-server)
  5367.                          gnus-secondary-servers)
  5368.                        nil nil gnus-nntp-server))
  5369.           (setq gnus-nntp-server
  5370.             (read-string "NNTP server: " gnus-nntp-server)))
  5371.       (setq gnus-nntp-server "")))
  5372.     ;; If no server name is given, local host is assumed.
  5373.     (if (or (string-equal gnus-nntp-server "")
  5374.         (string-equal gnus-nntp-server "::")) ;RMS preference.
  5375.     (setq gnus-nntp-server (system-name)))
  5376.     ;; gnus-nntp-server must be either (system-name), ':DIRECTORY', or
  5377.     ;; nntp server name.  I mean '::' cannot be a value of
  5378.     ;; gnus-nntp-server.
  5379.     (cond ((and (null gnus-nntp-service)
  5380.         (string-equal gnus-nntp-server (system-name)))
  5381.        (require 'nnspool)
  5382.        (gnus-define-access-method 'nnspool)
  5383.        (message "Looking up local news spool..."))
  5384.       ((string-match ":" gnus-nntp-server)
  5385.        ;; :DIRECTORY
  5386.        (require 'mhspool)
  5387.        (gnus-define-access-method 'mhspool)
  5388.        (message "Looking up private directory..."))
  5389.       (t
  5390.        (gnus-define-access-method 'nntp)
  5391.        (message "Connecting to NNTP server on %s..." gnus-nntp-server)))
  5392.     (run-hooks 'gnus-open-server-hook)
  5393.     (cond ((gnus-server-opened)        ;Maybe opened in gnus-open-server-hook.
  5394.        (message ""))
  5395.       ((gnus-open-server gnus-nntp-server gnus-nntp-service)
  5396.        (message ""))
  5397.       (t
  5398.        (error
  5399.         (gnus-nntp-message
  5400.          (format "Cannot open NNTP server on %s" gnus-nntp-server)))))
  5401.     ))
  5402.  
  5403. ;; Dummy functions used only once. Should return nil.
  5404. (defun gnus-server-opened () nil)
  5405. (defun gnus-close-server () nil)
  5406.  
  5407. (defun gnus-nntp-message (&optional message)
  5408.   "Return a message returned from NNTP server.
  5409. If no message is available and optional MESSAGE is given, return it."
  5410.   (let ((status (gnus-status-message))
  5411.     (message (or message "")))
  5412.     (if (and (stringp status)
  5413.          (> (length status) 0))
  5414.     status message)))
  5415.  
  5416. (defun gnus-define-access-method (method &optional access-methods)
  5417.   "Define access functions for the access METHOD.
  5418. Methods definition is taken from optional argument ACCESS-METHODS or
  5419. the variable gnus-access-methods."
  5420.   (let ((bindings
  5421.      (cdr (assoc method (or access-methods gnus-access-methods)))))
  5422.     (if (null bindings)
  5423.     (error "Unknown access method: %s" method)
  5424.       ;; Should not use symbol-function here since overload does not work.
  5425.       (while bindings
  5426.     ;; Alist syntax is different from that of 3.14.3.
  5427.     (fset (car (car bindings)) (car (cdr (car bindings))))
  5428.     (setq bindings (cdr bindings)))
  5429.       )))
  5430.  
  5431. (defun gnus-select-newsgroup (group &optional show-all)
  5432.   "Select newsgroup GROUP.
  5433. If optional argument SHOW-ALL is non-nil, all of articles in the group
  5434. are selected."
  5435.   ;; Make sure a connection to NNTP server is alive.
  5436.   (gnus-start-news-server)
  5437.   (if (gnus-request-group group)
  5438.       (let ((articles nil))
  5439.     (setq gnus-newsgroup-name group)
  5440.     (setq gnus-newsgroup-unreads
  5441.           (gnus-uncompress-sequence
  5442.            (nthcdr 2 (gnus-gethash group gnus-unread-hashtb))))
  5443.     (cond (show-all
  5444.            ;; Select all active articles.
  5445.            (setq articles
  5446.              (gnus-uncompress-sequence
  5447.               (nthcdr 2 (gnus-gethash group gnus-active-hashtb)))))
  5448.           (t
  5449.            ;; Select unread articles only.
  5450.            (setq articles gnus-newsgroup-unreads)))
  5451.     ;; Require confirmation if selecting large newsgroup.
  5452.     (setq gnus-newsgroup-unselected nil)
  5453.     (if (not (numberp gnus-large-newsgroup))
  5454.         nil
  5455.       (let ((selected nil)
  5456.         (number (length articles)))
  5457.         (if (> number gnus-large-newsgroup)
  5458.         (progn
  5459.           (condition-case ()
  5460.               (let ((input
  5461.                  (read-string
  5462.                   (format
  5463.                    "How many articles from %s (default %d): "
  5464.                    gnus-newsgroup-name number))))
  5465.             (setq selected
  5466.                   (if (string-equal input "")
  5467.                   number (string-to-int input))))
  5468.             (quit
  5469.              (setq selected 0)))
  5470.           (cond ((and (> selected 0)
  5471.                   (< selected number))
  5472.              ;; Select last N articles.
  5473.              (setq articles (nthcdr (- number selected) articles)))
  5474.             ((and (< selected 0)
  5475.                   (< (- 0 selected) number))
  5476.              ;; Select first N articles.
  5477.              (setq selected (- 0 selected))
  5478.              (setq articles (copy-sequence articles))
  5479.              (setcdr (nthcdr (1- selected) articles) nil))
  5480.             ((zerop selected)
  5481.              (setq articles nil))
  5482.             ;; Otherwise select all.
  5483.             )
  5484.           ;; Get unselected unread articles.
  5485.           (setq gnus-newsgroup-unselected
  5486.             (gnus-set-difference gnus-newsgroup-unreads articles))
  5487.           ))
  5488.         ))
  5489.     ;; Get headers list.
  5490.     (setq gnus-newsgroup-headers (gnus-retrieve-headers articles))
  5491.     ;; UNREADS may contain expired articles, so we have to remove
  5492.     ;;  them from the list.
  5493.     (setq gnus-newsgroup-unreads
  5494.           (gnus-intersection gnus-newsgroup-unreads
  5495.                  (mapcar
  5496.                   (function
  5497.                    (lambda (header)
  5498.                      (nntp-header-number header)))
  5499.                   gnus-newsgroup-headers)))
  5500.     ;; Marked article must be a subset of unread articles.
  5501.     (setq gnus-newsgroup-marked
  5502.           (gnus-intersection (append gnus-newsgroup-unselected
  5503.                      gnus-newsgroup-unreads)
  5504.                  (cdr
  5505.                   (gnus-gethash group gnus-marked-hashtb))))
  5506.     ;; First and last article in this newsgroup.
  5507.     (setq gnus-newsgroup-begin
  5508.           (if gnus-newsgroup-headers
  5509.           (nntp-header-number (car gnus-newsgroup-headers))
  5510.         0
  5511.         ))
  5512.     (setq gnus-newsgroup-end
  5513.           (if gnus-newsgroup-headers
  5514.           (nntp-header-number
  5515.            (gnus-last-element gnus-newsgroup-headers))
  5516.         0
  5517.         ))
  5518.     ;; File name that an article was saved last.
  5519.     (setq gnus-newsgroup-last-rmail nil)
  5520.     (setq gnus-newsgroup-last-mail nil)
  5521.     (setq gnus-newsgroup-last-folder nil)
  5522.     (setq gnus-newsgroup-last-file nil)
  5523.     ;; Reset article pointer etc.
  5524.     (setq gnus-current-article nil)
  5525.     (setq gnus-current-headers nil)
  5526.     (setq gnus-current-history nil)
  5527.     (setq gnus-have-all-headers nil)
  5528.     (setq gnus-last-article nil)
  5529.     ;; Clear old hash tables for the variable gnus-newsgroup-headers.
  5530.     (gnus-clear-hashtables-for-newsgroup-headers)
  5531.     ;; GROUP is successfully selected.
  5532.     t
  5533.     )
  5534.     ))
  5535.  
  5536. ;; Hacking for making header search much faster.
  5537.  
  5538. (defun gnus-get-header-by-number (number)
  5539.   "Return a header specified by a NUMBER.
  5540. If the variable gnus-newsgroup-headers is updated, the hashed table
  5541. gnus-newsgroup-headers-hashtb-by-number must be set to nil to indicate
  5542. rehash is necessary."
  5543.   (or gnus-newsgroup-headers-hashtb-by-number
  5544.       (gnus-make-headers-hashtable-by-number))
  5545.   (gnus-gethash (int-to-string number)
  5546.         gnus-newsgroup-headers-hashtb-by-number))
  5547.  
  5548. (defun gnus-get-header-by-id (id)
  5549.   "Return a header specified by an ID.
  5550. If the variable gnus-newsgroup-headers is updated, the hashed table
  5551. gnus-newsgroup-headers-hashtb-by-id must be set to nil to indicate
  5552. rehash is necessary."
  5553.   (or gnus-newsgroup-headers-hashtb-by-id
  5554.       (gnus-make-headers-hashtable-by-id))
  5555.   (and (stringp id)
  5556.        (gnus-gethash id gnus-newsgroup-headers-hashtb-by-id)))
  5557.  
  5558. (defun gnus-make-headers-hashtable-by-number ()
  5559.   "Make hashtable for the variable gnus-newsgroup-headers by number."
  5560.   (let ((header nil)
  5561.     (headers gnus-newsgroup-headers))
  5562.     (setq gnus-newsgroup-headers-hashtb-by-number
  5563.       (gnus-make-hashtable (length headers)))
  5564.     (while headers
  5565.       (setq header (car headers))
  5566.       (gnus-sethash (int-to-string (nntp-header-number header))
  5567.             header gnus-newsgroup-headers-hashtb-by-number)
  5568.       (setq headers (cdr headers))
  5569.       )))
  5570.  
  5571. (defun gnus-make-headers-hashtable-by-id ()
  5572.   "Make hashtable for the variable gnus-newsgroup-headers by id."
  5573.   (let ((header nil)
  5574.     (headers gnus-newsgroup-headers))
  5575.     (setq gnus-newsgroup-headers-hashtb-by-id
  5576.       (gnus-make-hashtable (length headers)))
  5577.     (while headers
  5578.       (setq header (car headers))
  5579.       (gnus-sethash (nntp-header-id header)
  5580.             header gnus-newsgroup-headers-hashtb-by-id)
  5581.       (setq headers (cdr headers))
  5582.       )))
  5583.  
  5584. (defun gnus-clear-hashtables-for-newsgroup-headers ()
  5585.   "Clear hash tables created for the variable gnus-newsgroup-headers."
  5586.   (setq gnus-newsgroup-headers-hashtb-by-id nil)
  5587.   (setq gnus-newsgroup-headers-hashtb-by-number nil))
  5588.  
  5589. (defun gnus-more-header-backward ()
  5590.   "Find new header backward."
  5591.   (let ((first
  5592.      (car (nth 2 (gnus-gethash gnus-newsgroup-name gnus-active-hashtb))))
  5593.     (artnum gnus-newsgroup-begin)
  5594.     (header nil))
  5595.     (while (and (not header)
  5596.         (> artnum first))
  5597.       (setq artnum (1- artnum))
  5598.       (setq header (car (gnus-retrieve-headers (list artnum)))))
  5599.     header
  5600.     ))
  5601.  
  5602. (defun gnus-more-header-forward ()
  5603.   "Find new header forward."
  5604.   (let ((last
  5605.      (cdr (nth 2 (gnus-gethash gnus-newsgroup-name gnus-active-hashtb))))
  5606.     (artnum gnus-newsgroup-end)
  5607.     (header nil))
  5608.     (while (and (not header)
  5609.         (< artnum last))
  5610.       (setq artnum (1+ artnum))
  5611.       (setq header (car (gnus-retrieve-headers (list artnum)))))
  5612.     header
  5613.     ))
  5614.  
  5615. (defun gnus-extend-newsgroup (header &optional backward)
  5616.   "Extend newsgroup selection with HEADER.
  5617. Optional argument BACKWARD means extend toward backward."
  5618.   (if header
  5619.       (let ((artnum (nntp-header-number header)))
  5620.     (setq gnus-newsgroup-headers
  5621.           (if backward
  5622.           (cons header gnus-newsgroup-headers)
  5623.         (append gnus-newsgroup-headers (list header))))
  5624.     ;; Clear current hash tables for the variable gnus-newsgroup-headers.
  5625.     (gnus-clear-hashtables-for-newsgroup-headers)
  5626.     ;; We have to update unreads and unselected, but don't have to
  5627.     ;; care about gnus-newsgroup-marked.
  5628.     (if (memq artnum gnus-newsgroup-unselected)
  5629.         (setq gnus-newsgroup-unreads
  5630.           (cons artnum gnus-newsgroup-unreads)))
  5631.     (setq gnus-newsgroup-unselected
  5632.           (delq artnum gnus-newsgroup-unselected))
  5633.     (setq gnus-newsgroup-begin (min gnus-newsgroup-begin artnum))
  5634.     (setq gnus-newsgroup-end (max gnus-newsgroup-end artnum))
  5635.     )))
  5636.  
  5637. (defun gnus-mark-article-as-read (article)
  5638.   "Remember that ARTICLE is marked as read."
  5639.   ;; Remove from unread and marked list.
  5640.   (setq gnus-newsgroup-unreads
  5641.     (delq article gnus-newsgroup-unreads))
  5642.   (setq gnus-newsgroup-marked
  5643.     (delq article gnus-newsgroup-marked)))
  5644.  
  5645. (defun gnus-mark-article-as-unread (article &optional clear-mark)
  5646.   "Remember that ARTICLE is marked as unread.
  5647. Optional argument CLEAR-MARK means ARTICLE should not be remembered
  5648. that it was marked as read once."
  5649.   ;; Add to unread list.
  5650.   (or (memq article gnus-newsgroup-unreads)
  5651.       (setq gnus-newsgroup-unreads
  5652.         (cons article gnus-newsgroup-unreads)))
  5653.   ;; If CLEAR-MARK is non-nil, the article must be removed from marked
  5654.   ;; list.  Otherwise, it must be added to the list.
  5655.   (if clear-mark
  5656.       (setq gnus-newsgroup-marked
  5657.         (delq article gnus-newsgroup-marked))
  5658.     (or (memq article gnus-newsgroup-marked)
  5659.     (setq gnus-newsgroup-marked
  5660.           (cons article gnus-newsgroup-marked)))))
  5661.  
  5662. (defun gnus-clear-system ()
  5663.   "Clear all variables and buffer."
  5664.   ;; Clear GNUS variables.
  5665.   (let ((variables gnus-variable-list))
  5666.     (while variables
  5667.       (set (car variables) nil)
  5668.       (setq variables (cdr variables))))
  5669.   ;; Clear other internal variables.
  5670.   (setq gnus-newsrc-hashtb nil)
  5671.   (setq gnus-marked-hashtb nil)
  5672.   (setq gnus-killed-hashtb nil)
  5673.   (setq gnus-active-hashtb nil)
  5674.   (setq gnus-octive-hashtb nil)
  5675.   (setq gnus-unread-hashtb nil)
  5676.   (setq gnus-newsgroup-headers nil)
  5677.   (setq gnus-newsgroup-headers-hashtb-by-id nil)
  5678.   (setq gnus-newsgroup-headers-hashtb-by-number nil)
  5679.   ;; Kill the startup file.
  5680.   (and gnus-current-startup-file
  5681.        (get-file-buffer gnus-current-startup-file)
  5682.        (kill-buffer (get-file-buffer gnus-current-startup-file)))
  5683.   (setq gnus-current-startup-file nil)
  5684.   ;; Kill GNUS buffers.
  5685.   (let ((buffers gnus-buffer-list))
  5686.     (while buffers
  5687.       (if (get-buffer (car buffers))
  5688.       (kill-buffer (car buffers)))
  5689.       (setq buffers (cdr buffers))
  5690.       )))
  5691.  
  5692. (defun gnus-configure-windows (action)
  5693.   "Configure GNUS windows according to the next ACTION.
  5694. The ACTION is either a symbol, such as `summary', or a
  5695. configuration list such as `(1 1 2)'.  If ACTION is not a list,
  5696. configuration list is got from the variable gnus-window-configuration."
  5697.   (let* ((windows
  5698.       (if (listp action)
  5699.           action (car (cdr (assq action gnus-window-configuration)))))
  5700.      (grpwin (get-buffer-window gnus-group-buffer))
  5701.      (subwin (get-buffer-window gnus-summary-buffer))
  5702.      (artwin (get-buffer-window gnus-article-buffer))
  5703.      (winsum nil)
  5704.      (height nil)
  5705.      (grpheight 0)
  5706.      (subheight 0)
  5707.      (artheight 0))
  5708.     (if (or (null windows)        ;No configuration is specified.
  5709.         (and (eq (null grpwin)
  5710.              (zerop (nth 0 windows)))
  5711.          (eq (null subwin)
  5712.              (zerop (nth 1 windows)))
  5713.          (eq (null artwin)
  5714.              (zerop (nth 2 windows)))))
  5715.     ;; No need to change window configuration.
  5716.     nil
  5717.       (select-window (or grpwin subwin artwin (selected-window)))
  5718.       ;; First of all, compute the height of each window.
  5719.       (cond (gnus-use-full-window
  5720.          ;; Take up the entire screen.
  5721.          (delete-other-windows)
  5722.          (setq height (window-height (selected-window))))
  5723.         (t
  5724.          (setq height (+ (if grpwin (window-height grpwin) 0)
  5725.                  (if subwin (window-height subwin) 0)
  5726.                  (if artwin (window-height artwin) 0)))))
  5727.       ;; The Newsgroup buffer exits always. So, use it to extend the
  5728.       ;; Group window so as to get enough window space.
  5729.       (switch-to-buffer gnus-group-buffer 'norecord)
  5730.       (and (get-buffer gnus-summary-buffer)
  5731.        (delete-windows-on gnus-summary-buffer))
  5732.       (and (get-buffer gnus-article-buffer)
  5733.        (delete-windows-on gnus-article-buffer))
  5734.       ;; Compute expected window height.
  5735.       (setq winsum (apply (function +) windows))
  5736.       (if (not (zerop (nth 0 windows)))
  5737.       (setq grpheight (max window-min-height
  5738.                    (/ (* height (nth 0 windows)) winsum))))
  5739.       (if (not (zerop (nth 1 windows)))
  5740.       (setq subheight (max window-min-height
  5741.                    (/ (* height (nth 1 windows)) winsum))))
  5742.       (if (not (zerop (nth 2 windows)))
  5743.       (setq artheight (max window-min-height
  5744.                    (/ (* height (nth 2 windows)) winsum))))
  5745.       (setq height (+ grpheight subheight artheight))
  5746.       (enlarge-window (max 0 (- height (window-height (selected-window)))))
  5747.       ;; Then split the window.
  5748.       (and (not (zerop artheight))
  5749.        (or (not (zerop grpheight))
  5750.            (not (zerop subheight)))
  5751.        (split-window-vertically (+ grpheight subheight)))
  5752.       (and (not (zerop grpheight))
  5753.        (not (zerop subheight))
  5754.        (split-window-vertically grpheight))
  5755.       ;; Then select buffers in each window.
  5756.       (and (not (zerop grpheight))
  5757.        (progn
  5758.          (switch-to-buffer gnus-group-buffer 'norecord)
  5759.          (other-window 1)))
  5760.       (and (not (zerop subheight))
  5761.        (progn
  5762.          (switch-to-buffer gnus-summary-buffer 'norecord)
  5763.          (other-window 1)))
  5764.       (and (not (zerop artheight))
  5765.        (progn
  5766.          ;; If Article buffer does not exist, it will be created
  5767.          ;; and initialized.
  5768.          (gnus-article-setup-buffer)
  5769.          (switch-to-buffer gnus-article-buffer 'norecord)))
  5770.       )
  5771.     ))
  5772.  
  5773. (defun gnus-find-header-by-number (headers number)
  5774.   "Return a header which is a element of HEADERS and has NUMBER."
  5775.   (let ((found nil))
  5776.     (while (and headers (not found))
  5777.       ;; We cannot use `=' to accept non-numeric NUMBER.
  5778.       (if (eq number (nntp-header-number (car headers)))
  5779.       (setq found (car headers)))
  5780.       (setq headers (cdr headers)))
  5781.     found
  5782.     ))
  5783.  
  5784. (defun gnus-find-header-by-id (headers id)
  5785.   "Return a header which is a element of HEADERS and has Message-ID."
  5786.   (let ((found nil))
  5787.     (while (and headers (not found))
  5788.       (if (string-equal id (nntp-header-id (car headers)))
  5789.       (setq found (car headers)))
  5790.       (setq headers (cdr headers)))
  5791.     found
  5792.     ))
  5793.  
  5794. (defun gnus-version ()
  5795.   "Version numbers of this version of GNUS."
  5796.   (interactive)
  5797.   (cond ((and (boundp 'mhspool-version) (boundp 'nnspool-version))
  5798.      (message "%s; %s; %s; %s"
  5799.           gnus-version nntp-version nnspool-version mhspool-version))
  5800.     ((boundp 'mhspool-version)
  5801.      (message "%s; %s; %s"
  5802.           gnus-version nntp-version mhspool-version))
  5803.     ((boundp 'nnspool-version)
  5804.      (message "%s; %s; %s"
  5805.           gnus-version nntp-version nnspool-version))
  5806.     (t
  5807.      (message "%s; %s" gnus-version nntp-version))))
  5808.  
  5809. (defun gnus-info-find-node ()
  5810.   "Find Info documentation of GNUS."
  5811.   (interactive)
  5812.   (require 'info)
  5813.   ;; Enlarge info window if needed.
  5814.   (cond ((eq major-mode 'gnus-group-mode)
  5815.      (gnus-configure-windows '(1 0 0)) ;Take all windows.
  5816.      (pop-to-buffer gnus-group-buffer))
  5817.     ((eq major-mode 'gnus-summary-mode)
  5818.      (gnus-configure-windows '(0 1 0)) ;Take all windows.
  5819.      (pop-to-buffer gnus-summary-buffer)))
  5820.   (Info-goto-node (car (cdr (assq major-mode gnus-info-nodes)))))
  5821.  
  5822. (defun gnus-overload-functions (&optional overloads)
  5823.   "Overload functions specified by optional argument OVERLOADS.
  5824. If nothing is specified, use the variable gnus-overload-functions."
  5825.   (let ((defs nil)
  5826.     (overloads (or overloads gnus-overload-functions)))
  5827.     (while overloads
  5828.       (setq defs (car overloads))
  5829.       (setq overloads (cdr overloads))
  5830.       ;; Load file before overloading function if necessary.  Make
  5831.       ;; sure we cannot use `require' always.
  5832.       (and (not (fboundp (car defs)))
  5833.        (car (cdr (cdr defs)))
  5834.        (load (car (cdr (cdr defs))) nil 'nomessage))
  5835.       (fset (car defs) (car (cdr defs)))
  5836.       )))
  5837.  
  5838. (defun gnus-make-threads (newsgroup-headers)
  5839.   "Make conversation threads tree from NEWSGROUP-HEADERS."
  5840.   (let ((headers newsgroup-headers)
  5841.     (refer nil)
  5842.     (h nil)
  5843.     (d nil)
  5844.     (roots nil)
  5845.     (dependencies nil))
  5846.     ;; Make message dependency alist.
  5847.     (while headers
  5848.       (setq h (car headers))
  5849.       (setq headers (cdr headers))
  5850.       ;; Ignore invalid headers.
  5851.       (if (vectorp h)            ;Depends on nntp.el.
  5852.       (progn
  5853.         ;; Ignore broken references, e.g "<123@a.b.c".
  5854.         (setq refer (nntp-header-references h))
  5855.         (setq d (and refer
  5856.              (string-match "\\(<[^<>]+>\\)[^>]*$" refer)
  5857. ;;             (gnus-find-header-by-id
  5858. ;;              newsgroup-headers
  5859. ;;              (substring refer (match-beginning 1) (match-end 1)))
  5860.              ;; In fact if the variable newsgroup-headers
  5861.              ;; is not 'equal' to the variable
  5862.              ;; gnus-newsgroup-headers, the following
  5863.              ;; function call may return bogus value.
  5864.              (gnus-get-header-by-id
  5865.               (substring refer (match-beginning 1) (match-end 1)))
  5866.              ))
  5867.         ;; Check subject equality.
  5868.         (or gnus-thread-ignore-subject
  5869.         (null d)
  5870.         (string-equal (gnus-simplify-subject
  5871.                    (nntp-header-subject h) 're)
  5872.                   (gnus-simplify-subject
  5873.                    (nntp-header-subject d) 're))
  5874.         ;; H should be a thread root.
  5875.         (setq d nil))
  5876.         ;; H depends on D.
  5877.         (setq dependencies
  5878.           (cons (cons h d) dependencies))
  5879.         ;; H is a thread root.
  5880.         (if (null d)
  5881.         (setq roots (cons h roots)))
  5882.         ))
  5883.       )
  5884.     ;; Make complete threads from the roots.
  5885.     ;; Note: dependencies are in reverse order, but
  5886.     ;; gnus-make-threads-1 processes it in reverse order again.  So,
  5887.     ;; we don't have to worry about it.
  5888.     (mapcar
  5889.      (function
  5890.       (lambda (root)
  5891.     (gnus-make-threads-1 root dependencies))) (nreverse roots))
  5892.     ))
  5893.  
  5894. (defun gnus-make-threads-1 (parent dependencies)
  5895.   (let ((children nil)
  5896.     (d nil)
  5897.     (depends dependencies))
  5898.     ;; Find children.
  5899.     (while depends
  5900.       (setq d (car depends))
  5901.       (setq depends (cdr depends))
  5902.       (and (cdr d)
  5903.        (eq (nntp-header-id parent) (nntp-header-id (cdr d)))
  5904.        (setq children (cons (car d) children))))
  5905.     ;; Go down.
  5906.     (cons parent
  5907.       (mapcar
  5908.        (function
  5909.         (lambda (child)
  5910.           (gnus-make-threads-1 child dependencies))) children))
  5911.     ))
  5912.  
  5913. (defun gnus-narrow-to-page (&optional arg)
  5914.   "Make text outside current page invisible except for page delimiter.
  5915. A numeric arg specifies to move forward or backward by that many pages,
  5916. thus showing a page other than the one point was originally in."
  5917.   (interactive "P")
  5918.   (setq arg (if arg (prefix-numeric-value arg) 0))
  5919.   (save-excursion
  5920.     (forward-page -1)            ;Beginning of current page.
  5921.     (widen)
  5922.     (if (> arg 0)
  5923.     (forward-page arg)
  5924.       (if (< arg 0)
  5925.       (forward-page (1- arg))))
  5926.     ;; Find the end of the page.
  5927.     (forward-page)
  5928.     ;; If we stopped due to end of buffer, stay there.
  5929.     ;; If we stopped after a page delimiter, put end of restriction
  5930.     ;; at the beginning of that line.
  5931.     ;; These are commented out.
  5932.     ;;    (if (save-excursion (beginning-of-line)
  5933.     ;;            (looking-at page-delimiter))
  5934.     ;;    (beginning-of-line))
  5935.     (narrow-to-region (point)
  5936.               (progn
  5937.             ;; Find the top of the page.
  5938.             (forward-page -1)
  5939.             ;; If we found beginning of buffer, stay there.
  5940.             ;; If extra text follows page delimiter on same line,
  5941.             ;; include it.
  5942.             ;; Otherwise, show text starting with following line.
  5943.             (if (and (eolp) (not (bobp)))
  5944.                 (forward-line 1))
  5945.             (point)))
  5946.     ))
  5947.  
  5948. ;; Create hash table for alist, such as gnus-newsrc-assoc,
  5949. ;; gnus-killed-assoc, and gnus-marked-assoc.
  5950.  
  5951. (defun gnus-make-hashtable-from-alist (alist &optional hashsize)
  5952.   "Return hash table for ALIST.
  5953. Optional argument HASHSIZE specifies the hashtable size.
  5954. Hash key is a car of alist element, which must be a string."
  5955.   (let ((hashtb (gnus-make-hashtable (or hashsize (length alist)))))
  5956.     (while alist
  5957.       (gnus-sethash (car (car alist))    ;Newsgroup name
  5958.             (car alist)        ;Alist element
  5959.             hashtb)
  5960.       (setq alist (cdr alist)))
  5961.     hashtb
  5962.     ))
  5963.  
  5964. (defun gnus-last-element (list)
  5965.   "Return last element of LIST."
  5966.   (let ((last nil))
  5967.     (while list
  5968.       (if (null (cdr list))
  5969.       (setq last (car list)))
  5970.       (setq list (cdr list)))
  5971.     last
  5972.     ))
  5973.  
  5974. (defun gnus-set-difference (list1 list2)
  5975.   "Return a list of elements of LIST1 that do not appear in LIST2."
  5976.   (let ((list1 (copy-sequence list1)))
  5977.     (while list2
  5978.       (setq list1 (delq (car list2) list1))
  5979.       (setq list2 (cdr list2)))
  5980.     list1
  5981.     ))
  5982.  
  5983. (defun gnus-intersection (list1 list2)
  5984.   "Return a list of elements that appear in both LIST1 and LIST2."
  5985.   (let ((result nil))
  5986.     (while list2
  5987.       (if (memq (car list2) list1)
  5988.       (setq result (cons (car list2) result)))
  5989.       (setq list2 (cdr list2)))
  5990.     result
  5991.     ))
  5992.  
  5993.  
  5994. ;;;
  5995. ;;; Get information about active articles, already read articles, and
  5996. ;;;  still unread articles.
  5997. ;;;
  5998.  
  5999. ;; GNUS internal format of gnus-newsrc-assoc and gnus-killed-assoc:
  6000. ;; (("general" t (1 . 1))
  6001. ;;  ("misc"    t (1 . 10) (12 . 15))
  6002. ;;  ("test"  nil (1 . 99)) ...)
  6003. ;; GNUS internal format of gnus-marked-assoc:
  6004. ;; (("general" 1 2 3)
  6005. ;;  ("misc" 2) ...)
  6006. ;; GNUS internal format of gnus-active-hashtb:
  6007. ;; (("general" t (1 . 1))
  6008. ;;  ("misc"    t (1 . 10))
  6009. ;;  ("test"  nil (1 . 99)) ...)
  6010. ;; GNUS internal format of gnus-unread-hashtb:
  6011. ;; (("general" 1 (1 . 1))
  6012. ;;  ("misc"   14 (1 . 10) (12 . 15))
  6013. ;;  ("test"   99 (1 . 99)) ...)
  6014.  
  6015. (defun gnus-setup-news (&optional rawfile)
  6016.   "Setup news information.
  6017. If optional argument RAWFILE is non-nil, force to read raw startup file."
  6018.   (let ((init (not (and gnus-newsrc-assoc
  6019.             gnus-active-hashtb
  6020.             gnus-unread-hashtb
  6021.             (not rawfile)
  6022.             ))))
  6023.     ;; We have to clear some variables to re-initialize news info.
  6024.     (if init
  6025.     (setq gnus-newsrc-assoc nil
  6026.           gnus-active-hashtb nil
  6027.           gnus-unread-hashtb nil))
  6028.     (gnus-read-active-file)
  6029.     ;; Initialize only once.
  6030.     (if init
  6031.     (progn
  6032.       ;; Get distributions only once.
  6033.       (gnus-read-distributions-file)
  6034.       ;; newsrc file must be read after reading active file since
  6035.       ;; its size is used to guess the size of gnus-newsrc-hashtb.
  6036.       (gnus-read-newsrc-file rawfile)
  6037.       ))
  6038.     (gnus-expire-marked-articles)
  6039.     (gnus-get-unread-articles)
  6040.     ;; Check new newsgroups and subscribe them.
  6041.     (if init
  6042.     (let ((new-newsgroups (gnus-find-new-newsgroups)))
  6043.       (while new-newsgroups
  6044.         (funcall gnus-subscribe-newsgroup-method (car new-newsgroups))
  6045.         (setq new-newsgroups (cdr new-newsgroups))
  6046.         )))
  6047.     ))
  6048.  
  6049. (defun gnus-add-newsgroup (newsgroup)
  6050.   "Subscribe new NEWSGROUP safely and put it at top."
  6051.   (and (null (gnus-gethash newsgroup gnus-newsrc-hashtb)) ;Really new?
  6052.        (gnus-gethash newsgroup gnus-active-hashtb) ;Really exist?
  6053.        (gnus-insert-newsgroup (or (gnus-gethash newsgroup gnus-killed-hashtb)
  6054.                   (list newsgroup t))
  6055.                   (car (car gnus-newsrc-assoc)))))
  6056.  
  6057. (defun gnus-find-new-newsgroups ()
  6058.   "Looking for new newsgroups and return names.
  6059. `-n' option of options line in .newsrc file is recognized."
  6060.   (let ((group nil)
  6061.     (new-newsgroups nil))
  6062.     (mapatoms
  6063.      (function
  6064.       (lambda (sym)
  6065.     (setq group (symbol-name sym))
  6066.     ;; Taking account of `-n' option.
  6067.     (and (or (null gnus-newsrc-options-n-no)
  6068.          (not (string-match gnus-newsrc-options-n-no group))
  6069.          (and gnus-newsrc-options-n-yes
  6070.               (string-match gnus-newsrc-options-n-yes group)))
  6071.          (null (gnus-gethash group gnus-killed-hashtb)) ;Ignore killed.
  6072.          (null (gnus-gethash group gnus-newsrc-hashtb)) ;Really new.
  6073.          ;; Find new newsgroup.
  6074.          (setq new-newsgroups
  6075.            (cons group new-newsgroups)))
  6076.     ))
  6077.      gnus-active-hashtb)
  6078.     ;; Return new newsgroups.
  6079.     new-newsgroups
  6080.     ))
  6081.  
  6082. (defun gnus-kill-newsgroup (group)
  6083.   "Kill GROUP from gnus-newsrc-assoc, .newsrc and gnus-unread-hashtb."
  6084.   (let ((info (gnus-gethash group gnus-newsrc-hashtb)))
  6085.     (if (null info)
  6086.     nil
  6087.       ;; Delete from gnus-newsrc-assoc and gnus-newsrc-hashtb.
  6088.       (setq gnus-newsrc-assoc (delq info gnus-newsrc-assoc))
  6089.       (gnus-sethash group nil gnus-newsrc-hashtb)
  6090.       ;; Add to gnus-killed-assoc and gnus-killed-hashtb.
  6091.       (setq gnus-killed-assoc
  6092.         (cons info
  6093.           (delq (gnus-gethash group gnus-killed-hashtb)
  6094.             gnus-killed-assoc)))
  6095.       (gnus-sethash group info gnus-killed-hashtb)
  6096.       ;; Clear unread hashtable.
  6097.       ;; Thanks cwitty@csli.Stanford.EDU (Carl Witty).
  6098.       (gnus-sethash group nil gnus-unread-hashtb)
  6099.       ;; Then delete from .newsrc
  6100.       (gnus-update-newsrc-buffer group 'delete)
  6101.       ;; Return the deleted newsrc entry.
  6102.       info
  6103.       )))
  6104.  
  6105. (defun gnus-insert-newsgroup (info &optional next)
  6106.   "Insert newsrc INFO entry before NEXT.
  6107. If optional argument NEXT is nil, appended to the last."
  6108.   (if (null info)
  6109.       (error "Invalid argument: %s" info))
  6110.   (let* ((group (car info))        ;Newsgroup name.
  6111.      (range
  6112.       (gnus-difference-of-range
  6113.        (nth 2 (gnus-gethash group gnus-active-hashtb)) (nthcdr 2 info))))
  6114.     ;; Check duplication.
  6115.     (if (gnus-gethash group gnus-newsrc-hashtb)
  6116.     (error "Duplicated: %s" group))
  6117.     ;; Insert to gnus-newsrc-assoc and gnus-newsrc-hashtb.
  6118.     (if (string-equal next (car (car gnus-newsrc-assoc)))
  6119.     (setq gnus-newsrc-assoc
  6120.           (cons info gnus-newsrc-assoc))
  6121.       (let ((found nil)
  6122.         (rest (cdr gnus-newsrc-assoc))
  6123.         (tail gnus-newsrc-assoc))
  6124.     ;; Seach insertion point.
  6125.     (while (and (not found) rest)
  6126.       (if (string-equal next (car (car rest)))
  6127.           (setq found t)
  6128.         (setq rest (cdr rest))
  6129.         (setq tail (cdr tail))
  6130.         ))
  6131.     ;; Find it.
  6132.     (if (consp tail)
  6133.         (setcdr tail (cons info rest))
  6134.       ;; gnus-newsrc-assoc must be nil.
  6135.       (setq gnus-newsrc-assoc
  6136.         (append gnus-newsrc-assoc (cons info rest))))
  6137.     ))
  6138.     (gnus-sethash group info gnus-newsrc-hashtb)
  6139.     ;; Delete from gnus-killed-assoc and gnus-killed-hashtb.
  6140.     (setq gnus-killed-assoc
  6141.       (delq (gnus-gethash group gnus-killed-hashtb) gnus-killed-assoc))
  6142.     (gnus-sethash group nil gnus-killed-hashtb)
  6143.     ;; Then insert to .newsrc.
  6144.     (gnus-update-newsrc-buffer group nil next)
  6145.     ;; Add to gnus-unread-hashtb.
  6146.     (gnus-sethash group
  6147.           (cons group        ;Newsgroup name.
  6148.             (cons (gnus-number-of-articles range) range))
  6149.           gnus-unread-hashtb)
  6150.     ))
  6151.  
  6152. (defun gnus-check-killed-newsgroups ()
  6153.   "Check consistency between gnus-newsrc-assoc and gnus-killed-assoc.
  6154. gnus-killed-hashtb is also updated."
  6155.   (let ((group nil)
  6156.     (new-killed nil)
  6157.     (old-killed gnus-killed-assoc))
  6158.     (while old-killed
  6159.       (setq group (car (car old-killed)))
  6160.       (and (or (null gnus-newsrc-options-n-no)
  6161.            (not (string-match gnus-newsrc-options-n-no group))
  6162.            (and gnus-newsrc-options-n-yes
  6163.             (string-match gnus-newsrc-options-n-yes group)))
  6164.        (null (gnus-gethash group gnus-newsrc-hashtb)) ;No duplication.
  6165.        ;; Subscribed in options line and not in gnus-newsrc-assoc.
  6166.        (setq new-killed
  6167.          (cons (car old-killed) new-killed)))
  6168.       (setq old-killed (cdr old-killed))
  6169.       )
  6170.     (setq gnus-killed-assoc (nreverse new-killed))
  6171.     (setq gnus-killed-hashtb
  6172.       (gnus-make-hashtable-from-alist gnus-killed-assoc))
  6173.     ))
  6174.  
  6175. (defun gnus-check-bogus-newsgroups (&optional confirm)
  6176.   "Delete bogus newsgroups.
  6177. If optional argument CONFIRM is non-nil, confirm deletion of newsgroups."
  6178.   (let ((group nil)            ;Newsgroup name temporary used.
  6179.     (old-newsrc gnus-newsrc-assoc)
  6180.     (new-newsrc nil)
  6181.     (bogus nil)            ;List of bogus newsgroups.
  6182.     (old-killed gnus-killed-assoc)
  6183.     (new-killed nil)
  6184.     (old-marked gnus-marked-assoc)
  6185.     (new-marked nil))
  6186.     (message "Checking bogus newsgroups...")
  6187.     ;; Update gnus-newsrc-assoc and gnus-newsrc-hashtb.
  6188.     (while old-newsrc
  6189.       (setq group (car (car old-newsrc)))
  6190.       (if (or (gnus-gethash group gnus-active-hashtb)
  6191.           (and confirm
  6192.            (not (y-or-n-p
  6193.              (format "Delete bogus newsgroup: %s " group)))))
  6194.       ;; Active newsgroup.
  6195.       (setq new-newsrc (cons (car old-newsrc) new-newsrc))
  6196.     ;; Found a bogus newsgroup.
  6197.     (setq bogus (cons group bogus)))
  6198.       (setq old-newsrc (cdr old-newsrc))
  6199.       )
  6200.     (setq gnus-newsrc-assoc (nreverse new-newsrc))
  6201.     (setq gnus-newsrc-hashtb
  6202.       (gnus-make-hashtable-from-alist gnus-newsrc-assoc))
  6203.     ;; Update gnus-killed-assoc and gnus-killed-hashtb.
  6204.     ;; The killed newsgroups are deleted without any confirmations.
  6205.     (while old-killed
  6206.       (setq group (car (car old-killed)))
  6207.       (and (gnus-gethash group gnus-active-hashtb)
  6208.        (null (gnus-gethash group gnus-newsrc-hashtb))
  6209.        ;; Active and really killed newsgroup.
  6210.        (setq new-killed (cons (car old-killed) new-killed)))
  6211.       (setq old-killed (cdr old-killed))
  6212.       )
  6213.     (setq gnus-killed-assoc (nreverse new-killed))
  6214.     (setq gnus-killed-hashtb
  6215.       (gnus-make-hashtable-from-alist gnus-killed-assoc))
  6216.     ;; Remove BOGUS from .newsrc file.
  6217.     (while bogus
  6218.       (gnus-update-newsrc-buffer (car bogus) 'delete)
  6219.       (setq bogus (cdr bogus)))
  6220.     ;; Update gnus-marked-assoc and gnus-marked-hashtb.
  6221.     (while old-marked
  6222.       (setq group (car (car old-marked)))
  6223.       (if (and (cdr (car old-marked))    ;Non-empty?
  6224.            (gnus-gethash group gnus-newsrc-hashtb))    ;Not bogus?
  6225.       (setq new-marked (cons (car old-marked) new-marked)))
  6226.       (setq old-marked (cdr old-marked)))
  6227.     (setq gnus-marked-assoc new-marked)
  6228.     (setq gnus-marked-hashtb
  6229.       (gnus-make-hashtable-from-alist gnus-marked-assoc))
  6230.     (message "Checking bogus newsgroups... done")
  6231.     ))
  6232.  
  6233. (defun gnus-get-unread-articles ()
  6234.   "Compute diffs between active and read articles."
  6235.   (let ((read gnus-newsrc-assoc)
  6236.     (group-info nil)
  6237.     (group-name nil)
  6238.     (active nil)
  6239.     (range nil))
  6240.     (message "Checking new news...")
  6241.     (or gnus-unread-hashtb
  6242.     (setq gnus-unread-hashtb
  6243.           (gnus-make-hashtable (length gnus-active-hashtb))))
  6244.     (while read
  6245.       (setq group-info (car read))    ;About one newsgroup
  6246.       (setq group-name (car group-info))
  6247.       (setq active (nth 2 (gnus-gethash group-name gnus-active-hashtb)))
  6248.       (if (and gnus-octive-hashtb
  6249.            ;; Is nothing changed?
  6250.            (equal active
  6251.               (nth 2 (gnus-gethash group-name gnus-octive-hashtb)))
  6252.            ;; Is this newsgroup in the unread hash table?
  6253.            (gnus-gethash group-name gnus-unread-hashtb)
  6254.            )
  6255.       nil                ;Nothing to do.
  6256.     (setq range (gnus-difference-of-range active (nthcdr 2 group-info)))
  6257.     (gnus-sethash group-name
  6258.               (cons group-name    ;Group name
  6259.                 (cons (gnus-number-of-articles range)
  6260.                   range)) ;Range of unread articles
  6261.               gnus-unread-hashtb)
  6262.     )
  6263.       (setq read (cdr read))
  6264.       )
  6265.     (message "Checking new news... done")
  6266.     ))
  6267.  
  6268. (defun gnus-expire-marked-articles ()
  6269.   "Check expired article which is marked as unread."
  6270.   (let ((marked-assoc gnus-marked-assoc)
  6271.     (updated-assoc nil)
  6272.     (marked nil)            ;Current marked info.
  6273.     (articles nil)            ;List of marked articles.
  6274.     (updated nil)            ;List of real marked.
  6275.     (begin nil))
  6276.     (while marked-assoc
  6277.       (setq marked (car marked-assoc))
  6278.       (setq articles (cdr marked))
  6279.       (setq updated nil)
  6280.       (setq begin
  6281.         (car (nth 2 (gnus-gethash (car marked) gnus-active-hashtb))))
  6282.       (while (and begin articles)
  6283.     (if (>= (car articles) begin)
  6284.         ;; This article is still active.
  6285.         (setq updated (cons (car articles) updated)))
  6286.     (setq articles (cdr articles)))
  6287.       (if updated
  6288.       (setq updated-assoc
  6289.         (cons (cons (car marked) updated) updated-assoc)))
  6290.       (setq marked-assoc (cdr marked-assoc)))
  6291.     (setq gnus-marked-assoc updated-assoc)
  6292.     (setq gnus-marked-hashtb
  6293.       (gnus-make-hashtable-from-alist gnus-marked-assoc))
  6294.     ))
  6295.  
  6296. (defun gnus-mark-as-read-by-xref
  6297.   (group headers unreads &optional subscribed-only)
  6298.   "Mark articles as read using cross references and return updated newsgroups.
  6299. Arguments are GROUP, HEADERS, UNREADS, and optional SUBSCRIBED-ONLY."
  6300.   (let ((xref-list nil)
  6301.     (header nil)
  6302.     (xrefs nil)            ;One Xref: field info.
  6303.     (xref nil)            ;(NEWSGROUP . ARTICLE)
  6304.     (gname nil)            ;Newsgroup name
  6305.     (article nil))            ;Article number
  6306.     (while headers
  6307.       (setq header (car headers))
  6308.       (if (memq (nntp-header-number header) unreads)
  6309.       ;; This article is not yet marked as read.
  6310.       nil
  6311.     (setq xrefs (gnus-parse-xref-field (nntp-header-xref header)))
  6312.     ;; For each cross reference info. in one Xref: field.
  6313.     (while xrefs
  6314.       (setq xref (car xrefs))
  6315.       (setq gname (car xref))    ;Newsgroup name
  6316.       (setq article (cdr xref))    ;Article number
  6317.       (or (string-equal group gname) ;Ignore current newsgroup.
  6318.           ;; Ignore unsubscribed newsgroup if requested.
  6319.           (and subscribed-only
  6320.            (not (nth 1 (gnus-gethash gname gnus-newsrc-hashtb))))
  6321.           ;; Ignore article marked as unread.
  6322.           (memq article (cdr (gnus-gethash gname gnus-marked-hashtb)))
  6323.           (let ((group-xref (assoc gname xref-list)))
  6324.         (if group-xref
  6325.             (if (memq article (cdr group-xref))
  6326.             nil        ;Alread marked.
  6327.               (setcdr group-xref (cons article (cdr group-xref))))
  6328.           ;; Create new assoc entry for GROUP.
  6329.           (setq xref-list (cons (list gname article) xref-list)))
  6330.         ))
  6331.       (setq xrefs (cdr xrefs))
  6332.       ))
  6333.       (setq headers (cdr headers)))
  6334.     ;; Mark cross referenced articles as read.
  6335.     (gnus-mark-xrefed-as-read xref-list)
  6336.     ;;(message "%s %s" (prin1-to-string unreads) (prin1-to-string xref-list))
  6337.     ;; Return list of updated group name.
  6338.     (mapcar (function car) xref-list)
  6339.     ))
  6340.  
  6341. (defun gnus-parse-xref-field (xref-value)
  6342.   "Parse Xref: field value, and return list of `(group . article-id)'."
  6343.   (let ((xref-list nil)
  6344.     (xref-value (or xref-value "")))
  6345.     ;; Remove server host name.
  6346.     (if (string-match "^[ \t]*[^ \t,]+[ \t,]+\\(.*\\)$" xref-value)
  6347.     (setq xref-value (substring xref-value (match-beginning 1)))
  6348.       (setq xref-value nil))
  6349.     ;; Process each xref info.
  6350.     (while xref-value
  6351.       (if (string-match
  6352.        "^[ \t,]*\\([^ \t,]+\\):\\([0-9]+\\)[^0-9]*" xref-value)
  6353.       (progn
  6354.         (setq xref-list
  6355.           (cons
  6356.            (cons
  6357.             ;; Group name
  6358.             (substring xref-value (match-beginning 1) (match-end 1))
  6359.             ;; Article-ID
  6360.             (string-to-int
  6361.              (substring xref-value (match-beginning 2) (match-end 2))))
  6362.            xref-list))
  6363.         (setq xref-value (substring xref-value (match-end 2))))
  6364.     (setq xref-value nil)))
  6365.     ;; Return alist.
  6366.     xref-list
  6367.     ))
  6368.  
  6369. (defun gnus-mark-xrefed-as-read (xrefs)
  6370.   "Update unread article information using XREFS alist."
  6371.   (let ((group nil)
  6372.     (idlist nil)
  6373.     (unread nil))
  6374.     (while xrefs
  6375.       (setq group (car (car xrefs)))
  6376.       (setq idlist (cdr (car xrefs)))
  6377.       (setq unread (gnus-uncompress-sequence
  6378.             (nthcdr 2 (gnus-gethash group gnus-unread-hashtb))))
  6379.       (while idlist
  6380.     (setq unread (delq (car idlist) unread))
  6381.     (setq idlist (cdr idlist)))
  6382.       (gnus-update-unread-articles group unread 'ignore)
  6383.       (setq xrefs (cdr xrefs))
  6384.       )))
  6385.  
  6386. (defun gnus-update-unread-articles (group unread-list marked-list)
  6387.   "Update unread articles of GROUP using UNREAD-LIST and MARKED-LIST."
  6388.   (let ((active (nth 2 (gnus-gethash group gnus-active-hashtb)))
  6389.     (unread (gnus-gethash group gnus-unread-hashtb)))
  6390.     (if (or (null active) (null unread))
  6391.     ;; Ignore unknown newsgroup.
  6392.     nil
  6393.       ;; Update gnus-unread-hashtb.
  6394.       (if unread-list
  6395.       (setcdr (cdr unread)
  6396.           (gnus-compress-sequence unread-list))
  6397.     ;; All of the articles are read.
  6398.     (setcdr (cdr unread) '((0 . 0))))
  6399.       ;; Number of unread articles.
  6400.       (setcar (cdr unread)
  6401.           (gnus-number-of-articles (nthcdr 2 unread)))
  6402.       ;; Update gnus-newsrc-assoc.
  6403.       (if (> (car active) 0)
  6404.       ;; Articles from 1 to N are not active.
  6405.       (setq active (cons 1 (cdr active))))
  6406.       (setcdr (cdr (gnus-gethash group gnus-newsrc-hashtb))
  6407.           (gnus-difference-of-range active (nthcdr 2 unread)))
  6408.       ;; Update .newsrc buffer.
  6409.       (gnus-update-newsrc-buffer group)
  6410.       ;; Update gnus-marked-assoc.
  6411.       (if (listp marked-list)        ;Includes NIL.
  6412.       (let ((marked (gnus-gethash group gnus-marked-hashtb)))
  6413.         (cond (marked        ;There is an entry.
  6414.            (setcdr marked marked-list))
  6415.           (marked-list        ;Non-NIL.
  6416.            (let ((info (cons group marked-list)))
  6417.              ;; hashtb must share the same cons cell.
  6418.              (setq gnus-marked-assoc
  6419.                (cons info gnus-marked-assoc))
  6420.              (gnus-sethash group info gnus-marked-hashtb)
  6421.              ))
  6422.           )))
  6423.       )))
  6424.  
  6425. (defun gnus-read-active-file ()
  6426.   "Get active file from NNTP server."
  6427.   ;; Make sure a connection to NNTP server is alive.
  6428.   (gnus-start-news-server)
  6429.   (message "Reading active file...")
  6430.   (if (gnus-request-list)        ;Get active file from server
  6431.       (save-excursion
  6432.     (set-buffer nntp-server-buffer)
  6433.     (gnus-active-to-gnus-format)
  6434.     (message "Reading active file... done"))
  6435.     (error "Cannot read active file from NNTP server.")))
  6436.  
  6437. (defun gnus-active-to-gnus-format ()
  6438.   "Convert active file format to internal format.
  6439. Lines matching gnus-ignored-newsgroups are ignored."
  6440.   ;; Delete unnecessary lines.
  6441.   (goto-char (point-min))
  6442.   ;;(delete-matching-lines "^to\\..*$")
  6443.   (delete-matching-lines gnus-ignored-newsgroups)
  6444.   ;; Save OLD active info.
  6445.   (setq gnus-octive-hashtb gnus-active-hashtb)
  6446.   ;; Make large enough hash table.
  6447.   (setq gnus-active-hashtb
  6448.     (gnus-make-hashtable (count-lines (point-min) (point-max))))
  6449.   ;; Store active file in hashtable.
  6450.   (goto-char (point-min))
  6451.   (while
  6452.       (re-search-forward
  6453.        "^\\([^ \t]+\\)[ \t]+\\([0-9]+\\)[ \t]+\\([0-9]+\\)[ \t]+\\([ymn]\\).*$"
  6454.        nil t)
  6455.     (gnus-sethash
  6456.      (buffer-substring (match-beginning 1) (match-end 1))
  6457.      (list (buffer-substring (match-beginning 1) (match-end 1))
  6458.        (string-equal
  6459.         "y" (buffer-substring (match-beginning 4) (match-end 4)))
  6460.        (cons (string-to-int
  6461.           (buffer-substring (match-beginning 3) (match-end 3)))
  6462.          (string-to-int
  6463.           (buffer-substring (match-beginning 2) (match-end 2)))))
  6464.      gnus-active-hashtb)
  6465.     ))
  6466.  
  6467. (defun gnus-read-newsrc-file (&optional rawfile)
  6468.   "Read startup FILE.
  6469. If optional argument RAWFILE is non-nil, the raw startup file is read."
  6470.   (setq gnus-current-startup-file (gnus-make-newsrc-file gnus-startup-file))
  6471.   ;; Reset variables which may be included in the quick startup file.
  6472.   (let ((variables gnus-variable-list))
  6473.     (while variables
  6474.       (set (car variables) nil)
  6475.       (setq variables (cdr variables))))
  6476.   (let* ((newsrc-file gnus-current-startup-file)
  6477.      (quick-file (concat newsrc-file ".el"))
  6478.      (quick-loaded nil))
  6479.     (save-excursion
  6480.       ;; Prepare .newsrc buffer.
  6481.       (set-buffer (find-file-noselect newsrc-file))
  6482.       ;; It is not so good idea turning off undo.
  6483.       ;;(buffer-flush-undo (current-buffer))
  6484.       ;; Load quick .newsrc to restore gnus-marked-assoc and
  6485.       ;; gnus-killed-assoc even if gnus-newsrc-assoc is out of date.
  6486.       (condition-case nil
  6487.       (progn
  6488.         (setq quick-loaded (load quick-file t t t))
  6489.         ;; Recreate hashtables.
  6490.         (setq gnus-killed-hashtb
  6491.           (gnus-make-hashtable-from-alist gnus-killed-assoc))
  6492.         (setq gnus-marked-hashtb
  6493.           (gnus-make-hashtable-from-alist gnus-marked-assoc))
  6494.         )
  6495.     (error nil))
  6496.       (cond ((and (not rawfile)        ;Not forced to read the raw file.
  6497.           ;; .newsrc.el is newer than .newsrc.
  6498.           ;; Do it this way in case timestamps are identical
  6499.           ;; (on fast machines/disks).
  6500.           (not (file-newer-than-file-p newsrc-file quick-file))
  6501.           quick-loaded
  6502.           gnus-newsrc-assoc    ;Really loaded?
  6503.           )
  6504.          ;; We don't have to read the raw startup file.
  6505.          ;; gnus-newsrc-assoc may be defined in the quick startup file.
  6506.          ;; So, we have to define the hashtable here.
  6507.          (setq gnus-newsrc-hashtb
  6508.            (gnus-make-hashtable-from-alist gnus-newsrc-assoc)))
  6509.         (t
  6510.          ;; Since .newsrc file is newer than quick file, read it.
  6511.          (message "Reading %s..." newsrc-file)
  6512.          (gnus-newsrc-to-gnus-format)
  6513.          (gnus-check-killed-newsgroups)
  6514.          (message "Reading %s... Done" newsrc-file)))
  6515.       )))
  6516.  
  6517. (defun gnus-make-newsrc-file (file)
  6518.   "Make server dependent file name by catenating FILE and server host name."
  6519.   (let* ((file (expand-file-name file nil))
  6520.      (real-file (concat file "-" gnus-nntp-server)))
  6521.     (if (file-exists-p real-file)
  6522.     real-file file)
  6523.     ))
  6524.  
  6525. (defun gnus-newsrc-to-gnus-format ()
  6526.   "Parse current buffer as .newsrc file."
  6527.   (let ((newsgroup nil)
  6528.     (subscribe nil)
  6529.     (ranges nil)
  6530.     (subrange nil)
  6531.     (read-list nil))
  6532.     ;; We have to re-initialize these variable (except for
  6533.     ;; gnus-marked-assoc and gnus-killed-assoc) because quick startup
  6534.     ;; file may contain bogus values.
  6535.     (setq gnus-newsrc-options nil)
  6536.     (setq gnus-newsrc-options-n-yes nil)
  6537.     (setq gnus-newsrc-options-n-no nil)
  6538.     (setq gnus-newsrc-assoc nil)
  6539.     ;; Make large enough hash table.
  6540.     (setq gnus-newsrc-hashtb
  6541.       (gnus-make-hashtable
  6542.        (max (length gnus-active-hashtb)
  6543.         (count-lines (point-min) (point-max)))))
  6544.     ;; Save options line to variable.
  6545.     ;; Lines beginning with white spaces are treated as continuation
  6546.     ;; line.  Refer man page of newsrc(5).
  6547.     (goto-char (point-min))
  6548.     (if (re-search-forward
  6549.      "^[ \t]*options[ \t]*\\(.*\\(\n[ \t]+.*\\)*\\)[ \t]*$" nil t)
  6550.     (progn
  6551.       ;; Save entire options line.
  6552.       (setq gnus-newsrc-options
  6553.         (buffer-substring (match-beginning 1) (match-end 1)))
  6554.       ;; Compile "-n" option.
  6555.       (if (string-match "\\(^\\|[ \t\n]\\)-n" gnus-newsrc-options)
  6556.           (let ((yes-and-no
  6557.              (gnus-parse-n-options
  6558.               (substring gnus-newsrc-options (match-end 0)))))
  6559.         (setq gnus-newsrc-options-n-yes (car yes-and-no))
  6560.         (setq gnus-newsrc-options-n-no  (cdr yes-and-no))
  6561.         ))
  6562.       ))
  6563.     ;; Parse body of .newsrc file
  6564.     ;; Options line continuation lines must be also considered here.
  6565.     ;; Before supporting continuation lines, " newsgroup ! 1-5" was
  6566.     ;; okay, but now it is invalid.  It should be "newsgroup! 1-5".
  6567.     (goto-char (point-min))
  6568.     ;; Due to overflows in regex.c, change the following regexp:
  6569.     ;; "^\\([^:! \t\n]+\\)\\([:!]\\)[ \t]*\\(.*\\)$"
  6570.     ;; Suggested by composer@bucsf.bu.edu (Jeff Kellem)
  6571.     ;; but no longer viable because of extensive backtracking in Emacs 19:
  6572.     ;; "^\\([^:! \t\n]+\\)\\([:!]\\)[ \t]*\\(\\(...\\)*.*\\)$" nil t)
  6573.     (while (re-search-forward
  6574.         "^\\([^:! \t\n]+\\)\\([:!]\\)[ \t]*\\(\\|[^ \t\n].*\\)$" nil t)
  6575.       (setq newsgroup (buffer-substring (match-beginning 1) (match-end 1)))
  6576.       ;; Check duplications of newsgroups.
  6577.       ;; Note: Checking the duplications takes very long time.
  6578.       (if (gnus-gethash newsgroup gnus-newsrc-hashtb)
  6579.       (message "Ignore duplicated newsgroup: %s" newsgroup)
  6580.     (setq subscribe
  6581.           (string-equal
  6582.            ":" (buffer-substring (match-beginning 2) (match-end 2))))
  6583.     (setq ranges (buffer-substring (match-beginning 3) (match-end 3)))
  6584.     (setq read-list nil)
  6585.     (while (string-match "^[, \t]*\\([0-9-]+\\)" ranges)
  6586.       (setq subrange (substring ranges (match-beginning 1) (match-end 1)))
  6587.       (setq ranges (substring ranges (match-end 1)))
  6588.       (cond ((string-match "^\\([0-9]+\\)-\\([0-9]+\\)$" subrange)
  6589.          (setq read-list
  6590.                (cons
  6591.             (cons (string-to-int
  6592.                    (substring subrange
  6593.                       (match-beginning 1) (match-end 1)))
  6594.                   (string-to-int
  6595.                    (substring subrange
  6596.                       (match-beginning 2) (match-end 2))))
  6597.             read-list)))
  6598.         ((string-match "^[0-9]+$" subrange)
  6599.          (setq read-list
  6600.                (cons (cons (string-to-int subrange)
  6601.                    (string-to-int subrange))
  6602.                  read-list)))
  6603.         (t
  6604.          (ding) (message "Ignoring bogus lines of %s" newsgroup)
  6605.          (sit-for 0))
  6606.         ))
  6607.     (setq gnus-newsrc-assoc
  6608.           (cons (cons newsgroup (cons subscribe (nreverse read-list)))
  6609.             gnus-newsrc-assoc))
  6610.     ;; Update gnus-newsrc-hashtb one by one.
  6611.     (gnus-sethash newsgroup (car gnus-newsrc-assoc) gnus-newsrc-hashtb)
  6612.     ))
  6613.     (setq gnus-newsrc-assoc (nreverse gnus-newsrc-assoc))
  6614.     ))
  6615.  
  6616. (defun gnus-parse-n-options (options)
  6617.   "Parse -n NEWSGROUPS options and return a cons of YES and NO regexps."
  6618.   (let ((yes nil)
  6619.     (no nil)
  6620.     (yes-or-no nil)            ;`!' or not.
  6621.     (newsgroup nil))
  6622.     ;; Parse each newsgroup description such as "comp.all".  Commas
  6623.     ;; and white spaces can be a newsgroup separator.
  6624.     (while
  6625.     (string-match "^[ \t\n,]*\\(!?\\)\\([^--- \t\n,][^ \t\n,]*\\)" options)
  6626.       (setq yes-or-no
  6627.         (substring options (match-beginning 1) (match-end 1)))
  6628.       (setq newsgroup
  6629.         (regexp-quote
  6630.          (substring options
  6631.             (match-beginning 2) (match-end 2))))
  6632.       (setq options (substring options (match-end 2)))
  6633.       ;; Rewrite "all" to ".+" not ".*".  ".+" requires at least one
  6634.       ;; character.
  6635.       (while (string-match "\\(^\\|\\\\[.]\\)all\\(\\\\[.]\\|$\\)" newsgroup)
  6636.     (setq newsgroup
  6637.           (concat (substring newsgroup 0 (match-end 1))
  6638.               ".+"
  6639.               (substring newsgroup (match-beginning 2)))))
  6640.       ;; It is yes or no.
  6641.       (cond ((string-equal yes-or-no "!")
  6642.          (setq no (cons newsgroup no)))
  6643.         ((string-equal newsgroup ".+")) ;Ignore `all'.
  6644.         (t
  6645.          (setq yes (cons newsgroup yes))))
  6646.       )
  6647.     ;; Make a cons of regexps from parsing result.
  6648.     ;; We have to append \(\.\|$\) to prevent matching substring of
  6649.     ;; newsgroup.  For example, "jp.net" should not match with
  6650.     ;; "jp.network".
  6651.     ;; Fixes for large regexp problems are from yonezu@nak.math.keio.ac.jp.
  6652.     (cons (if yes
  6653.           (concat "^\\("
  6654.               (apply (function concat)
  6655.                  (mapcar
  6656.                   (function
  6657.                    (lambda (newsgroup)
  6658.                  (concat newsgroup "\\|")))
  6659.                   (cdr yes)))
  6660.               (car yes) "\\)\\(\\.\\|$\\)"))
  6661.       (if no
  6662.           (concat "^\\("
  6663.               (apply (function concat)
  6664.                  (mapcar
  6665.                   (function
  6666.                    (lambda (newsgroup)
  6667.                  (concat newsgroup "\\|")))
  6668.                   (cdr no)))
  6669.               (car no) "\\)\\(\\.\\|$\\)")))
  6670.     ))
  6671.  
  6672. (defun gnus-save-newsrc-file ()
  6673.   "Save to .newsrc FILE."
  6674.   ;; Note: We cannot save .newsrc file if all newsgroups are removed
  6675.   ;; from the variable gnus-newsrc-assoc.
  6676.   (and (or gnus-newsrc-assoc gnus-killed-assoc)
  6677.        gnus-current-startup-file
  6678.        (save-excursion
  6679.      ;; A buffer containing .newsrc file may be deleted.
  6680.      (set-buffer (find-file-noselect gnus-current-startup-file))
  6681.      (if (not (buffer-modified-p))
  6682.          (message "(No changes need to be saved)")
  6683.        (message "Saving %s..." gnus-current-startup-file)
  6684.        (let ((make-backup-files t)
  6685.          (version-control nil)
  6686.          (require-final-newline t)) ;Don't ask even if requested.
  6687.          ;; Make backup file of master newsrc.
  6688.          ;; You can stop or change version control of backup file.
  6689.          ;; Suggested by jason@violet.berkeley.edu.
  6690.          (run-hooks 'gnus-save-newsrc-hook)
  6691.          (save-buffer))
  6692.        ;; Quickly loadable .newsrc.
  6693.        (set-buffer (get-buffer-create " *GNUS-newsrc*"))
  6694.        (buffer-flush-undo (current-buffer))
  6695.        (erase-buffer)
  6696.        (gnus-gnus-to-quick-newsrc-format)
  6697.        (let ((make-backup-files nil)
  6698.          (version-control nil)
  6699.          (require-final-newline t)) ;Don't ask even if requested.
  6700.          (write-file (concat gnus-current-startup-file ".el")))
  6701.        (kill-buffer (current-buffer))
  6702.        (message "Saving %s... Done" gnus-current-startup-file)
  6703.        ))
  6704.     ))
  6705.  
  6706. (defun gnus-update-newsrc-buffer (group &optional delete next)
  6707.   "Incrementally update .newsrc buffer about GROUP.
  6708. If optional 1st argument DELETE is non-nil, delete the group.
  6709. If optional 2nd argument NEXT is non-nil, inserted before it."
  6710.   (save-excursion
  6711.     ;; Taking account of the killed startup file.
  6712.     ;; Suggested by tale@pawl.rpi.edu.
  6713.     (set-buffer (or (get-file-buffer gnus-current-startup-file)
  6714.             (find-file-noselect gnus-current-startup-file)))
  6715.     ;; Options line continuation lines must be also considered here.
  6716.     ;; Before supporting continuation lines, " newsgroup ! 1-5" was
  6717.     ;; okay, but now it is invalid.  It should be "newsgroup! 1-5".
  6718.     (let ((deleted nil)
  6719.       (case-fold-search nil)    ;Should NOT ignore case.
  6720.       (buffer-read-only nil))    ;May be not modifiable.
  6721.       ;; Delete ALL entries which match for GROUP.
  6722.       (goto-char (point-min))
  6723.       (while (re-search-forward
  6724.           (concat "^" (regexp-quote group) "[:!]") nil t)
  6725.     (beginning-of-line)
  6726.     (delete-region (point) (progn (forward-line 1) (point)))
  6727.     (setq deleted t)        ;Old entry is deleted.
  6728.     )
  6729.       (if delete
  6730.       nil
  6731.     ;; Insert group entry.
  6732.     (let ((newsrc (gnus-gethash group gnus-newsrc-hashtb)))
  6733.       (if (null newsrc)
  6734.           nil
  6735.         ;; Find insertion point.
  6736.         (cond (deleted nil)        ;Insert here.
  6737.           ((and (stringp next)
  6738.             (progn
  6739.               (goto-char (point-min))
  6740.               (re-search-forward
  6741.                (concat "^" (regexp-quote next) "[:!]") nil t)))
  6742.            (beginning-of-line))
  6743.           (t
  6744.            (goto-char (point-max))
  6745.            (or (bolp)
  6746.                (insert "\n"))))
  6747.         ;; Insert after options line.
  6748.         (if (looking-at "^[ \t]*options\\([ \t]\\|$\\)")
  6749.         (progn
  6750.           (forward-line 1)
  6751.           ;; Skip continuation lines.
  6752.           (while (and (not (eobp))
  6753.                   (looking-at "^[ \t]+"))
  6754.             (forward-line 1))))
  6755.         (insert group        ;Group name
  6756.             (if (nth 1 newsrc) ": " "! ")) ;Subscribed?
  6757.         (gnus-ranges-to-newsrc-format (nthcdr 2 newsrc)) ;Read articles
  6758.         (insert "\n")
  6759.         )))
  6760.       )))
  6761.  
  6762. (defun gnus-gnus-to-quick-newsrc-format ()
  6763.   "Insert GNUS variables such as gnus-newsrc-assoc in lisp format."
  6764.   (insert ";; GNUS internal format of .newsrc.\n")
  6765.   (insert ";; Touch .newsrc instead if you think to remove this file.\n")
  6766.   (let ((variable nil)
  6767.     (variables gnus-variable-list)
  6768.     ;; Temporary rebind to make changes
  6769.     ;; gnus-check-killed-newsgroups in invisible.
  6770.     (gnus-killed-assoc gnus-killed-assoc)
  6771.     (gnus-killed-hashtb gnus-killed-hashtb))
  6772.     ;; Remove duplicated or unsubscribed newsgroups in
  6773.     ;; gnus-killed-assoc (and gnus-killed-hashtb).
  6774.     (gnus-check-killed-newsgroups)
  6775.     ;; Then, insert lisp expressions.
  6776.     (while variables
  6777.       (setq variable (car variables))
  6778.       (and (boundp variable)
  6779.        (symbol-value variable)
  6780.        (insert "(setq " (symbol-name variable) " '"
  6781.            (prin1-to-string (symbol-value variable))
  6782.            ")\n"))
  6783.       (setq variables (cdr variables)))
  6784.     ))
  6785.  
  6786. (defun gnus-ranges-to-newsrc-format (ranges)
  6787.   "Insert ranges of read articles."
  6788.   (let ((range nil))            ;Range is a pair of BEGIN and END.
  6789.     (while ranges
  6790.       (setq range (car ranges))
  6791.       (setq ranges (cdr ranges))
  6792.       (cond ((= (car range) (cdr range))
  6793.          (if (= (car range) 0)
  6794.          (setq ranges nil)    ;No unread articles.
  6795.            (insert (int-to-string (car range)))
  6796.            (if ranges (insert ","))
  6797.            ))
  6798.         (t
  6799.          (insert (int-to-string (car range))
  6800.              "-"
  6801.              (int-to-string (cdr range)))
  6802.          (if ranges (insert ","))
  6803.          ))
  6804.       )))
  6805.  
  6806. (defun gnus-compress-sequence (numbers)
  6807.   "Convert list of sorted numbers to ranges."
  6808.   (let* ((numbers (sort (copy-sequence numbers) (function <)))
  6809.      (first (car numbers))
  6810.      (last (car numbers))
  6811.      (result nil))
  6812.     (while numbers
  6813.       (cond ((= last (car numbers)) nil) ;Omit duplicated number
  6814.         ((= (1+ last) (car numbers)) ;Still in sequence
  6815.          (setq last (car numbers)))
  6816.         (t                ;End of one sequence
  6817.          (setq result (cons (cons first last) result))
  6818.          (setq first (car numbers))
  6819.          (setq last  (car numbers)))
  6820.         )
  6821.       (setq numbers (cdr numbers))
  6822.       )
  6823.     (nreverse (cons (cons first last) result))
  6824.     ))
  6825.  
  6826. (defun gnus-uncompress-sequence (ranges)
  6827.   "Expand compressed format of sequence."
  6828.   (let ((first nil)
  6829.     (last  nil)
  6830.     (result nil))
  6831.     (while ranges
  6832.       (setq first (car (car ranges)))
  6833.       (setq last  (cdr (car ranges)))
  6834.       (while (< first last)
  6835.     (setq result (cons first result))
  6836.     (setq first (1+ first)))
  6837.       (setq result (cons first result))
  6838.       (setq ranges (cdr ranges))
  6839.       )
  6840.     (nreverse result)
  6841.     ))
  6842.  
  6843. (defun gnus-number-of-articles (range)
  6844.   "Compute number of articles from RANGE `((beg1 . end1) (beg2 . end2) ...)'."
  6845.   (let ((count 0))
  6846.     (while range
  6847.       (if (/= (cdr (car range)) 0)
  6848.       ;; If end1 is 0, it must be skipped. Usually no articles in
  6849.       ;;  this group.
  6850.       (setq count (+ count 1 (- (cdr (car range)) (car (car range))))))
  6851.       (setq range (cdr range))
  6852.       )
  6853.     count                ;Result
  6854.     ))
  6855.  
  6856. (defun gnus-difference-of-range (src obj)
  6857.   "Compute (SRC - OBJ) on range.
  6858. Range of SRC is expressed as `(beg . end)'.
  6859. Range of OBJ is expressed as `((beg1 . end1) (beg2 . end2) ...)."
  6860.   (let ((beg (car src))
  6861.     (end (cdr src))
  6862.     (range nil))            ;This is result.
  6863.     ;; Src may be nil.
  6864.     (while (and src obj)
  6865.       (let ((beg1 (car (car obj)))
  6866.         (end1 (cdr (car obj))))
  6867.     (cond ((> beg end)
  6868.            (setq obj nil))        ;Terminate loop
  6869.           ((< beg beg1)
  6870.            (setq range (cons (cons beg (min (1- beg1) end)) range))
  6871.            (setq beg (1+ end1)))
  6872.           ((>= beg beg1)
  6873.            (setq beg (max beg (1+ end1))))
  6874.           )
  6875.     (setq obj (cdr obj))        ;Next OBJ
  6876.     ))
  6877.     ;; Src may be nil.
  6878.     (if (and src (<= beg end))
  6879.     (setq range (cons (cons beg end) range)))
  6880.     ;; Result
  6881.     (if range
  6882.     (nreverse range)
  6883.       (list (cons 0 0)))
  6884.     ))
  6885.  
  6886. (defun gnus-read-distributions-file ()
  6887.   "Get distributions file from NNTP server (NNTP2 functionality)."
  6888.   ;; Make sure a connection to NNTP server is alive.
  6889.   (gnus-start-news-server)
  6890.   (message "Reading distributions file...")
  6891.   (setq gnus-distribution-list nil)
  6892.   (if (gnus-request-list-distributions)
  6893.       (save-excursion
  6894.     (set-buffer nntp-server-buffer)
  6895.     (gnus-distributions-to-gnus-format)
  6896.     (message "Reading distributions file... done"))
  6897.     ;; It's not a fatal error.
  6898.     ;;(error "Cannot read distributions file from NNTP server.")
  6899.     )
  6900.   ;; Merge with user supplied default distributions.
  6901.   (let ((defaults (reverse gnus-local-distributions))
  6902.     (dist nil))
  6903.     (while defaults
  6904.       (setq dist (assoc (car defaults) gnus-distribution-list))
  6905.       (if dist
  6906.       (setq gnus-distribution-list
  6907.         (delq dist gnus-distribution-list)))
  6908.       (setq gnus-distribution-list
  6909.         (cons (list (car defaults)) gnus-distribution-list))
  6910.       (setq defaults (cdr defaults))
  6911.       )))
  6912.  
  6913. (defun gnus-distributions-to-gnus-format ()
  6914.   "Convert distributions file format to internal format."
  6915.   (setq gnus-distribution-list nil)
  6916.   (goto-char (point-min))
  6917.   (while (re-search-forward "^\\([^ \t\n]+\\).*$" nil t)
  6918.     (setq gnus-distribution-list
  6919.       (cons (list (buffer-substring (match-beginning 1) (match-end 1)))
  6920.         gnus-distribution-list)))
  6921.   (setq gnus-distribution-list
  6922.     (nreverse gnus-distribution-list)))
  6923.  
  6924. ;; Some older version of GNU Emacs does not support function
  6925. ;; `file-newer-than-file-p'.
  6926.  
  6927. (or (fboundp 'file-newer-than-file-p)
  6928.     (defun file-newer-than-file-p (file1 file2)
  6929.       "Return t if file FILE1 is newer than file FILE2.
  6930. If FILE1 does not exist, the answer is nil;
  6931. otherwise, if FILE2 does not exist, the answer is t."
  6932.       (let ((mod1 (nth 5 (file-attributes file1)))
  6933.         (mod2 (nth 5 (file-attributes file2))))
  6934.     (cond ((not (file-exists-p file1)) nil)
  6935.           ((not (file-exists-p file2)) t)
  6936.           ((and mod2 mod1)
  6937.            (or (< (car mod2) (car mod1))
  6938.            (and (= (car mod2) (car mod1))
  6939.             (<= (nth 1 mod2) (nth 1 mod1)))))
  6940.           ))))
  6941.  
  6942.  
  6943. ;;Local variables:
  6944. ;;eval: (put 'gnus-eval-in-buffer-window 'lisp-indent-hook 1)
  6945. ;;end:
  6946.